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