confirm_form.mustache 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <%
  2. # Copyright (C) 2015 - present Instructure, Inc.
  3. #
  4. # This file is part of Canvas.
  5. #
  6. # Canvas is free software: you can redistribute it and/or modify it under
  7. # the terms of the GNU Affero General Public License as published by the Free
  8. # Software Foundation, version 3 of the License.
  9. #
  10. # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
  11. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License along
  16. # with this program. If not, see <http://www.gnu.org/licenses/>.
  17. %>
  18. <h2 class="ic-Login-confirmation__headline">
  19. <% if @provider.icon_url %>
  20. <%= image_tag @provider.icon_url, :alt => t("Provider icon"), :class => 'ic-Login-confirmation__auth-icon' %>
  21. <% end %>
  22. <%= @provider.app_name %>
  23. </h2>
  24. <p>
  25. <strong><%= mt 'details.allow_application', "%{app_name} is requesting access to your account.", :app_name => @provider.app_name %></strong>
  26. </p>
  27. <p>
  28. <%= 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") %>
  29. <% if @current_user.email.present? && @current_user.email != @current_user.short_name %>
  30. <br/>
  31. <%= t 'details.email', "Your email address is %{email}.", :email => @current_user.email %>
  32. <% end %>
  33. </p>
  34. <%= form_tag oauth2_auth_accept_path, id: "oauth2_accept_form" do %>
  35. <div class="button_box ic-Login-confirmation__actions">
  36. <%= link_to(t(:cancel, "Cancel"), oauth2_auth_deny_path, :class => "Button Button--block") %>
  37. <%= submit_tag(t("Authorize"), class: "Button Button--primary Button--block", data: {disable_with: t('Please wait...')}) %>
  38. </div>
  39. <% unless @provider.scopes.blank? %>
  40. <div class="control-group">
  41. <%= check_box_tag(:remember_access, "1", false, :class => "checkbox") %>
  42. <%= label_tag :remember_access, t('labels.remember_access', "Remember my authorization for this service"), class: "checkbox" %>
  43. </div>
  44. <% end %>
  45. <% end %>