<% # Copyright (C) 2015 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see . %>

<% if @provider.icon_url %> <%= image_tag @provider.icon_url, :alt => t("Provider icon"), :class => 'ic-Login-confirmation__auth-icon' %> <% end %> <%= @provider.app_name %>

<%= mt 'details.allow_application', "%{app_name} is requesting access to your account.", :app_name => @provider.app_name %>

<%= mt 'details.login_name', "You are authorizing this app as %{user_name}.", :user_name => link_to(@current_user.short_name, user_profile_url(@current_user), :popup => true, target:"_blank") %> <% if @current_user.email.present? && @current_user.email != @current_user.short_name %>
<%= t 'details.email', "Your email address is %{email}.", :email => @current_user.email %> <% end %>

<% if @special_confirm_message %>

<%= @special_confirm_message %>

<% end %> <%= form_tag oauth2_auth_accept_path, id: "oauth2_accept_form" do %>
<%= link_to(t(:cancel, "Cancel"), oauth2_auth_deny_path, :class => "Button Button--block") %> <%= submit_tag(t("Authorize"), class: "Button Button--primary Button--block", data: {disable_with: t('Please wait...')}) %>
<% if @provider.scopes == ["/auth/userinfo"] %>
<%= check_box_tag(:remember_access, "1", false, :class => "checkbox") %> <%= label_tag :remember_access, t('labels.remember_access', "Remember my authorization for this service"), class: "checkbox" %>
<% end %> <% end %>