Bike database interface
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
491 B

.container
%h2 Sign up
= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
= devise_error_messages!
= f.label :email
= f.email_field :email, autofocus: true
%br
= f.label :password
= f.password_field :password, autocomplete: "off"
%br
= f.label :password_confirmation
= f.password_field :password_confirmation, autocomplete: "off"
%br
= f.submit "Sign up"
= render "devise/shared/links"