mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
17 lines
541 B
Text
17 lines
541 B
Text
h1 Reset password
|
|
|
|
= form_for @changeset, ~p"/passwords/#{@token}", fn f ->
|
|
= if @changeset.action do
|
|
.alert.alert-danger
|
|
p Oops, something went wrong! Please check the errors below.
|
|
|
|
.field
|
|
= password_input f, :password, class: "input", placeholder: "New password", minlength: 12
|
|
= error_tag f, :password
|
|
|
|
.field
|
|
= password_input f, :password_confirmation, class: "input", placeholder: "Confirm new password", minlength: 12
|
|
= error_tag f, :password_confirmation
|
|
|
|
div
|
|
= submit "Submit", class: "button"
|