You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
233 B
Plaintext
10 lines
233 B
Plaintext
1 year ago
|
= 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
|