2a34255e0b
Co-authored-by: Subin <subinthattaparambil@gmail.com> Co-authored-by: Manoj <manojmj92@gmail.com> Co-authored-by: Nithin <webofnithin@gmail.com>
34 lines
891 B
Text
34 lines
891 B
Text
<h2>Sign up</h2>
|
|
|
|
<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
|
|
<%= devise_error_messages! %>
|
|
|
|
<div class="field">
|
|
<%= f.label :email %><br />
|
|
<%= f.email_field :email, autofocus: true %>
|
|
</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: "off" %>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<%= f.label :password_confirmation %><br />
|
|
<%= f.password_field :password_confirmation, autocomplete: "off" %>
|
|
</div>
|
|
|
|
<%= f.fields_for :account_attributes do |i| %>
|
|
<p><%= i.label :name %><br />
|
|
<%= i.text_field :name %></p>
|
|
<% end %>
|
|
|
|
<div class="actions">
|
|
<%= f.submit "Sign up" %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= render "users/shared/links" %>
|