mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
14 lines
467 B
Text
14 lines
467 B
Text
h1 Forgot your password?
|
|
p
|
|
' Provide the email address you signed up with and we will email you
|
|
' password reset instructions.
|
|
|
|
= form_for :user, Routes.password_path(@conn, :create), fn f ->
|
|
.field
|
|
= email_input f, :email, class: "input", placeholder: "Email", required: true
|
|
|
|
.field
|
|
= checkbox f, :captcha, class: "js-captcha", value: 0
|
|
= label f, :captcha, "I am not a robot!"
|
|
|
|
= submit "Send instructions to reset password", class: "button"
|