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.
17 lines
510 B
17 lines
510 B
12 years ago
|
<%= simple_form_for(resource,
|
||
|
as: resource_name,
|
||
|
url: registration_path(resource_name)
|
||
|
) do |f| %>
|
||
|
|
||
|
<%= devise_error_messages! %>
|
||
|
|
||
|
<%= honeypot %>
|
||
|
<%= f.input :full_name, required: true %>
|
||
|
<%= f.input :email, required: true %>
|
||
|
<%= f.input :password, required: true %>
|
||
|
<%= f.submit "Sign up", class: 'btn btn-primary' %>
|
||
|
<small>
|
||
|
or <%= link_to 'Sign in', new_user_session_path %>
|
||
|
/ <%= link_to 'Forgot your password?', new_password_path(resource_name) %>
|
||
|
</small>
|
||
|
<% end %>
|