metamaps--metamaps/app/views/users/registrations/new.html.erb

29 lines
991 B
Text
Raw Permalink Normal View History

<% content_for :title, "Sign Up | Metamaps" %>
2016-08-12 04:04:18 +00:00
<% content_for :mobile_title, "Join" %>
2014-08-12 15:09:53 +00:00
<div id="yield">
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :post, :class => "new_user centerGreyForm" }) do |f| %>
2017-10-16 02:23:16 +00:00
<h3>Sign Up</h3>
2013-07-10 18:02:38 +00:00
2017-10-16 22:40:48 +00:00
<div class="fieldText">
Only email addresses at the uts.edu.au domain name will be able to register.
All users must verify their email address.
</div>
2017-10-16 02:23:16 +00:00
<div><%= f.label :name, "Name:", :class => "firstFieldText" %>
<%= f.text_field :name, :autofocus => true %></div>
2017-10-16 02:23:16 +00:00
<div><%= f.label :email, "Email:", :class => "fieldText" %>
<%= f.email_field :email %></div>
2013-07-10 18:02:38 +00:00
<div><%= f.label :password, "Password:", :class => "fieldText" %>
2013-07-10 18:02:38 +00:00
<%= f.password_field :password %></div>
<div><%= f.label :password_confirmation, "Password Confirmation:", :class => "fieldText" %>
2013-07-10 18:02:38 +00:00
<%= f.password_field :password_confirmation %></div>
2017-10-16 02:23:16 +00:00
<div><%= f.submit "Sign up" %></div>
2013-07-10 18:02:38 +00:00
<% end %>
2014-08-12 15:09:53 +00:00
</div>