2018-03-04 02:25:42 +00:00
|
|
|
{ content_for :title, "Sign Up | Metamaps" }
|
|
|
|
{ content_for :mobile_title, "Join" }
|
2014-06-10 16:59:19 +00:00
|
|
|
|
2014-08-12 15:09:53 +00:00
|
|
|
<div id="yield">
|
2018-03-04 02:25:42 +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
|
|
|
|
2018-03-04 02:25:42 +00:00
|
|
|
<div>{ f.label :name, "Name:", :class => "firstFieldText" }
|
|
|
|
{ f.text_field :name, :autofocus => true }</div>
|
2013-07-11 15:13:27 +00:00
|
|
|
|
2018-03-04 02:25:42 +00:00
|
|
|
<div>{ f.label :email, "Email:", :class => "fieldText" }
|
|
|
|
{ f.email_field :email }</div>
|
2013-07-10 18:02:38 +00:00
|
|
|
|
2018-03-04 02:25:42 +00:00
|
|
|
<div>{ f.label :password, "Password:", :class => "fieldText" }
|
|
|
|
{ f.password_field :password }</div>
|
2013-07-10 18:02:38 +00:00
|
|
|
|
2018-03-04 02:25:42 +00:00
|
|
|
<div>{ f.label :password_confirmation, "Password Confirmation:", :class => "fieldText" }
|
|
|
|
{ f.password_field :password_confirmation }</div>
|
2013-07-11 15:13:27 +00:00
|
|
|
|
2018-03-04 02:25:42 +00:00
|
|
|
<div>{ f.label "Access Code:", :class => "fieldText" }
|
|
|
|
{ f.text_field :joinedwithcode, :value => params[:code] }</div>
|
2013-07-10 18:02:38 +00:00
|
|
|
|
2018-03-04 02:25:42 +00:00
|
|
|
<div>{ f.submit "Sign up!" }</div>
|
2013-07-11 15:13:27 +00:00
|
|
|
|
2016-08-16 14:25:07 +00:00
|
|
|
<div class = "smallText"><br />Don't have an access code?<br /><a href="/request">Request an Invite</a></div>
|
2018-03-04 02:25:42 +00:00
|
|
|
{ end }
|
2014-08-12 15:09:53 +00:00
|
|
|
</div>
|
2013-07-11 15:13:27 +00:00
|
|
|
|