adejs/controllers/auth/templates/passwordForgotten.pug

16 lines
588 B
Plaintext
Raw Normal View History

2017-09-29 14:35:13 +02:00
extends ../../../templates/base.pug
block content
.row
.col
.col
2017-09-29 14:42:42 +02:00
if passwordForgottenFailed
.alert.alert-danger
| This email does not exist in our database.
2017-09-29 14:35:13 +02:00
form(method="POST", action=getUrl("passwordForgottenTarget"))
.form-group
input.form-control(type="text", name="email", placeholder="Enter your email address", autofocus)
.form-group
input.btn.btn-primary.form-control(type="submit", value="Request a new password")
.col