new.mustache 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <%
  2. # Copyright (C) 2011 - 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. <%
  19. js_bundle :registration
  20. css_bundle :registration
  21. content_for :page_title, t('create_a_canvas_account', "Create a Canvas Account")
  22. content_for :head, include_common_stylesheets
  23. %>
  24. <div id="registration_header">
  25. <div class="registration-content">
  26. <h1><a href="http://www.instructure.com">Instructure</a></h1>
  27. <a id="registration_login" href="/login">Login</a>
  28. </div>
  29. </div>
  30. <div id="registration_content">
  31. <div class="registration-content">
  32. <h2 id="registration_video"><a href="http://vimeo.com/35336470" title="Play the Canvas introduction video">Watch a Video</a></h2>
  33. <div id="registration_options">
  34. <h2>Sign up now, it's free!</h2>
  35. <% if (url = @domain_root_account.settings[:fft_registration_url]) %>
  36. <a id="signup_teacher" href=<%= url %> title="Teacher Signup">I'm a Teacher</a>
  37. <% else %>
  38. <a href="#" id="signup_teacher" class="signup_link" data-template="teacherDialog" title="Teacher Signup">I'm a Teacher</a>
  39. <% end %>
  40. <a href="#" id="signup_student" class="signup_link" data-template="studentDialog" title="Student Signup">I'm a Student</a>
  41. <%= link_to_parent_signup(@domain_root_account.parent_auth_type) %>
  42. </div>
  43. </div>
  44. </div>
  45. <div id="registration_footer">
  46. <div class="registration-content">
  47. <div class="left">&copy; <%= Time.now.year %> <a href="http://www.instructure.com">Instructure</a></div>
  48. <div class="right">
  49. <%= link_to t(:terms_of_use, 'Terms of Use'), terms_of_use_url %>
  50. <%= link_to t(:privacy_policy, 'Privacy Policy'), privacy_policy_url %>
  51. </div>
  52. </div>
  53. </div>
  54. <%= # for plugin use
  55. render "shared/login_trailer" %>