2014-06-10 16:59:19 +00:00
|
|
|
<% content_for :title, "Sign Up | Metamaps" %>
|
2016-08-12 04:04:18 +00:00
|
|
|
<% content_for :mobile_title, "Join" %>
|
2014-06-10 16:59:19 +00:00
|
|
|
|
2014-08-12 15:09:53 +00:00
|
|
|
<div id="yield">
|
2014-06-10 16:59:19 +00:00
|
|
|
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :post, :class => "new_user centerGreyForm" }) do |f| %>
|
2013-07-11 15:13:27 +00:00
|
|
|
|
2014-01-29 03:46:58 +00:00
|
|
|
<h3>Sign Up</h3>
|
2013-07-10 18:02:38 +00:00
|
|
|
|
2014-09-25 16:25:46 +00:00
|
|
|
<div><%= f.label :name, "Name:", :class => "firstFieldText" %>
|
2013-07-11 15:13:27 +00:00
|
|
|
<%= f.text_field :name, :autofocus => true %></div>
|
|
|
|
|
2014-09-25 16:25:46 +00:00
|
|
|
<div><%= f.label :email, "Email:", :class => "fieldText" %>
|
2013-07-11 15:13:27 +00:00
|
|
|
<%= f.email_field :email %></div>
|
2013-07-10 18:02:38 +00:00
|
|
|
|
2014-09-25 16:25:46 +00:00
|
|
|
<div><%= f.label :password, "Password:", :class => "fieldText" %>
|
2013-07-10 18:02:38 +00:00
|
|
|
<%= f.password_field :password %></div>
|
|
|
|
|
2014-09-25 16:25:46 +00:00
|
|
|
<div><%= f.label :password_confirmation, "Password Confirmation:", :class => "fieldText" %>
|
2013-07-10 18:02:38 +00:00
|
|
|
<%= f.password_field :password_confirmation %></div>
|
2013-07-11 15:13:27 +00:00
|
|
|
|
2014-09-25 16:25:46 +00:00
|
|
|
<div><%= f.label "Access Code:", :class => "fieldText" %>
|
2014-11-15 01:21:16 +00:00
|
|
|
<%= f.text_field :joinedwithcode, :value => params[:code] %></div>
|
2013-07-10 18:02:38 +00:00
|
|
|
|
2014-09-25 16:25:46 +00:00
|
|
|
<div><%= f.submit "Sign up!" %></div>
|
2013-07-11 15:13:27 +00:00
|
|
|
|
2014-09-25 16:25:46 +00:00
|
|
|
<div class = "smallText"><br />Don't have an access code?<br /><a href="/request" data-bypass="true">Request an Invite</a></div>
|
2013-07-10 18:02:38 +00:00
|
|
|
<% end %>
|
2014-08-12 15:09:53 +00:00
|
|
|
</div>
|
2013-07-11 15:13:27 +00:00
|
|
|
|