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.
 
 
 
 
 
 

27 lines
618 B

<div class="page-header">
<h1>Sign up</h1>
</div>
<%= simple_form_for(resource,
as: resource_name,
url: registration_path(resource_name),
html: { class: 'form-horizontal' }
) do |f| %>
<%= devise_error_messages! %>
<div class="inputs">
<%= honeypot %>
<%= f.input :first_name %>
<%= f.input :last_name %>
<%= f.input :email, as: :email %>
<%= f.input :password %>
<%= f.input :password_confirmation %>
</div>
<div class="form-actions">
<%= f.submit "Sign up", class: 'btn btn-primary' %>
</div>
<% end %>
<%= render :partial => "devise/shared/links" %>