philomena/lib/philomena_web/templates/password/edit.html.slime

18 lines
531 B
Text
Raw Normal View History

2019-11-15 03:40:35 +01:00
h1 Reset password
= form_for @changeset, Routes.password_path(@conn, :update, @token), fn f ->
2019-11-15 03:40:35 +01:00
= 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"
= error_tag f, :password
.field
= password_input f, :password_confirmation, class: "input", placeholder: "Confirm new password"
2020-01-27 00:09:37 +01:00
= error_tag f, :password_confirmation
2019-11-15 03:40:35 +01:00
div
= submit "Submit", class: "button"