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.
28 lines
716 B
28 lines
716 B
<div class="page-header"> |
|
<h1>Sign up</h1> |
|
</div> |
|
|
|
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %> |
|
<%= devise_error_messages! %> |
|
|
|
<%= honeypot %> |
|
|
|
<div><%= f.label :first_name %> |
|
<%= f.text_field :first_name %></div> |
|
|
|
<div><%= f.label :last_name %> |
|
<%= f.text_field :last_name %></div> |
|
|
|
<div><%= f.label :email %> |
|
<%= f.email_field :email %></div> |
|
|
|
<div><%= f.label :password %> |
|
<%= f.password_field :password %> |
|
|
|
<div><%= f.label :password_confirmation %> |
|
<%= f.password_field :password_confirmation %></div> |
|
|
|
<div><%= f.submit "Sign up", class: 'btn-primary' %></div> |
|
<% end %> |
|
|
|
<%= render :partial => "devise/shared/links" %>
|
|
|