Created
March 29, 2016 03:54
-
-
Save at-longhoang/2571d660355a5628566e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>Sign up</h2> | |
<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> | |
<%= devise_error_messages! %> | |
<%= fields_for @user_detail do |u| %> | |
<div class="field"> | |
<%= u.label :name %><br /> | |
<%= u.text_field :name %> | |
</div> | |
<div class="field"> | |
<%= u.label :address %><br /> | |
<%= u.text_field :address %> | |
</div> | |
<div class="field"> | |
<%= u.label :phone %><br /> | |
<%= u.text_field :phone %> | |
</div> | |
<% end %> | |
<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> | |
<div class="actions"> | |
<%= f.submit "Sign up" %> | |
</div> | |
<% end %> | |
<%= render "users/shared/links" %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment