Created
June 5, 2013 02:42
-
-
Save TXDynamics/5711257 to your computer and use it in GitHub Desktop.
Device Login form Sample
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
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %> | |
<%= devise_error_messages! %> | |
<div> | |
<%= f.label :name %><br /> | |
<%= f.text_field :name %> | |
</div> | |
<div><%= f.label :email %><br /> | |
<%= f.email_field :email, :autofocus => true %></div> | |
<div><%= f.label :password %><br /> | |
<%= f.password_field :password %></div> | |
<div><%= f.label :password_confirmation %><br /> | |
<%= f.password_field :password_confirmation %></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