Skip to content

Instantly share code, notes, and snippets.

@TXDynamics
Created June 5, 2013 02:42
Show Gist options
  • Save TXDynamics/5711257 to your computer and use it in GitHub Desktop.
Save TXDynamics/5711257 to your computer and use it in GitHub Desktop.
Device Login form Sample
<%= 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