registration_incomplete.mustache 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <%
  2. # Copyright (C) 2012 - 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. <% content_for :page_title do %>
  19. {{#t}}Confirm Your Email Address{{/t}}
  20. <% end %>
  21. <% js_bundle :confirm_email %>
  22. <% @show_left_side = false %>
  23. <% @show_embedded_chat = false %>
  24. <div id="unauthorized_holder">
  25. <% css_bundle("unauthorized_message") %>
  26. <div id="unauthorized_message">
  27. <h2 class="ui-state-error">
  28. {{#t}}Confirm Your Email Address{{/t}}
  29. </h2>
  30. <p style="font-weight: normal">
  31. <%= t "confirm_email_instructions", <<-TEXT, :email => @current_user.email, :wrapper => {'*' => '<b>\1</b>', '**' => '<a href="' + re_send_confirmation_path(@current_user, @current_user.communication_channel) + '" class="re_send_confirmation_link">\1</a>'}
  32. Before you can view this page, you need to *verify your email address*
  33. (%{email}). Click the link in your email to finish setting up your account.
  34. If you don't see the email, **click to re-send it**, and make sure to check your
  35. spam box.
  36. TEXT
  37. %>
  38. </p>
  39. </div>
  40. </div>