Created
February 14, 2015 02:35
-
-
Save andrekibbe/6c30692efb23d348aab2 to your computer and use it in GitHub Desktop.
rails_store/views/devise/registrations/new.html.erb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h2>Sign up</h2> | |
| <%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> | |
| <%= devise_error_messages! %> | |
| <div><%= f.label :email %><br /> | |
| <%= f.email_field :email, autofocus: true %></div> | |
| <div><%= f.label :password %><br /> | |
| <%= f.password_field :password, autocomplete: "off" %></div> | |
| <div><%= f.label :password_confirmation %><br /> | |
| <%= f.password_field :password_confirmation, autocomplete: "off" %></div> | |
| <div><%= f.submit "Sign up" %></div> | |
| <% end %> | |
| <%= render "devise/shared/links" %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment