123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <%
- # Copyright (C) 2011 - 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 <http://www.gnu.org/licenses/>.
- %>
- <%
- js_bundle :registration
- css_bundle :registration
- content_for :page_title, t('create_a_canvas_account', "Create a Canvas Account")
- content_for :head, include_common_stylesheets
- %>
- <div id="registration_header">
- <div class="registration-content">
- <h1><a href="http://www.instructure.com">Instructure</a></h1>
- <a id="registration_login" href="/login">Login</a>
- </div>
- </div>
- <div id="registration_content">
- <div class="registration-content">
- <h2 id="registration_video"><a href="http://vimeo.com/35336470" title="Play the Canvas introduction video">Watch a Video</a></h2>
- <div id="registration_options">
- <h2>Sign up now, it's free!</h2>
- <% if (url = @domain_root_account.settings[:fft_registration_url]) %>
- <a id="signup_teacher" href=<%= url %> title="Teacher Signup">I'm a Teacher</a>
- <% else %>
- <a href="#" id="signup_teacher" class="signup_link" data-template="teacherDialog" title="Teacher Signup">I'm a Teacher</a>
- <% end %>
- <a href="#" id="signup_student" class="signup_link" data-template="studentDialog" title="Student Signup">I'm a Student</a>
- <%= link_to_parent_signup(@domain_root_account.parent_auth_type) %>
- </div>
- </div>
- </div>
- <div id="registration_footer">
- <div class="registration-content">
- <div class="left">© <%= Time.now.year %> <a href="http://www.instructure.com">Instructure</a></div>
- <div class="right">
- <%= link_to t(:terms_of_use, 'Terms of Use'), terms_of_use_url %>
- <%= link_to t(:privacy_policy, 'Privacy Policy'), privacy_policy_url %>
- </div>
- </div>
- </div>
- <%= # for plugin use
- render "shared/login_trailer" %>
|