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.
29 lines
837 B
29 lines
837 B
<h2>Sign up</h2> |
|
|
|
<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> |
|
<%= render "devise/shared/error_messages", resource: resource %> |
|
|
|
<div class="field"> |
|
<%= f.label :email %><br /> |
|
<%= f.email_field :email, autofocus: true, autocomplete: "email" %> |
|
</div> |
|
|
|
<div class="field"> |
|
<%= f.label :password %> |
|
<% if @minimum_password_length %> |
|
<em>(<%= @minimum_password_length %> characters minimum)</em> |
|
<% end %><br /> |
|
<%= f.password_field :password, autocomplete: "new-password" %> |
|
</div> |
|
|
|
<div class="field"> |
|
<%= f.label :password_confirmation %><br /> |
|
<%= f.password_field :password_confirmation, autocomplete: "new-password" %> |
|
</div> |
|
|
|
<div class="actions"> |
|
<%= f.submit "Sign up" %> |
|
</div> |
|
<% end %> |
|
|
|
<%= render "devise/shared/links" %>
|
|
|