Initial Commit from Base app
[base_ror3_portal.git] / app / views / devise / registrations / new.html.erb
blobae12ee75dfc24b1d4f0541aaf8686bbe12725819
1 <h2>Sign up</h2>
3 <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
4   <%= devise_error_messages! %>
6   <p><%= f.label :email %><br />
7   <%= f.text_field :email %></p>
9   <p><%= f.label :password %><br />
10   <%= f.password_field :password %></p>
12   <p><%= f.label :password_confirmation %><br />
13   <%= f.password_field :password_confirmation %></p>
15   <p><%= f.submit "Sign up" %></p>
16 <% end %>
18 <%= render :partial => "devise/shared/links" %>