Skip to content

Instantly share code, notes, and snippets.

@andrekibbe
Created February 14, 2015 02:35
Show Gist options
  • Select an option

  • Save andrekibbe/6c30692efb23d348aab2 to your computer and use it in GitHub Desktop.

Select an option

Save andrekibbe/6c30692efb23d348aab2 to your computer and use it in GitHub Desktop.
rails_store/views/devise/registrations/new.html.erb
<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