change form fields in view
This commit is contained in:
parent
c97d2f42b8
commit
d548852db5
1 changed files with 2 additions and 2 deletions
|
|
@ -7,9 +7,9 @@
|
||||||
Sign Up
|
Sign Up
|
||||||
.panel-body
|
.panel-body
|
||||||
= semantic_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
|
= semantic_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
|
||||||
= f.input :username, input_html: { required: true }, hint: 'This is how the other users see you, not your real name'
|
= f.input :username, label: "First name", input_html: { required: true }
|
||||||
|
= f.input :name, label: "Last name", input_html: { required: true }
|
||||||
= f.input :email, input_html: { required: true }
|
= f.input :email, input_html: { required: true }
|
||||||
= f.input :name, input_html: { required: true }, hint: 'This is your real name'
|
|
||||||
= f.input :password, input_html: { required: true }
|
= f.input :password, input_html: { required: true }
|
||||||
= f.input :password_confirmation, input_html: { required: true }
|
= f.input :password_confirmation, input_html: { required: true }
|
||||||
%p.text-right
|
%p.text-right
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue