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.
23 lines
565 B
23 lines
565 B
<%= render :partial => "devise/shared/links" %> |
|
|
|
<%= 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 %>
|
|
|