9 lines
233 B
Text
9 lines
233 B
Text
= simple_form_for @user do |f|
|
|
= f.input :email, required: true
|
|
= f.input :password, required: true
|
|
= f.input :password_confirmation, required: true
|
|
|
|
.form-actions
|
|
= f.submit class: 'btn'
|
|
|
|
= link_to 'Zurück', users_path
|