mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
18 lines
490 B
Text
18 lines
490 B
Text
<h2>Sign up</h2>
|
|
|
|
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
|
|
<%= devise_error_messages! %>
|
|
|
|
<p><%= f.label :email %><br />
|
|
<%= f.email_field :email %></p>
|
|
|
|
<p><%= f.label :password %><br />
|
|
<%= f.password_field :password %></p>
|
|
|
|
<p><%= f.label :password_confirmation %><br />
|
|
<%= f.password_field :password_confirmation %></p>
|
|
|
|
<p><%= f.submit "Sign up" %></p>
|
|
<% end %>
|
|
|
|
<%= render :partial => "devise/shared/links" %>
|