diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-18 16:05:36 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-18 16:05:36 +0000 |
| commit | b499f31dfcb4e3cf27c34ae0958612a9d43bf910 (patch) | |
| tree | 71e19ad212225060c1ccd3bd9308e0420b1f3ad8 /app/templates/reset_password_request.html | |
| parent | add gitignore (diff) | |
| download | AnnotateChange-b499f31dfcb4e3cf27c34ae0958612a9d43bf910.tar.gz AnnotateChange-b499f31dfcb4e3cf27c34ae0958612a9d43bf910.zip | |
add errors, email, and reset password
Diffstat (limited to 'app/templates/reset_password_request.html')
| -rw-r--r-- | app/templates/reset_password_request.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/templates/reset_password_request.html b/app/templates/reset_password_request.html new file mode 100644 index 0000000..914c593 --- /dev/null +++ b/app/templates/reset_password_request.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} + +{% block content %} + <h1>Reset Password</h1> + <form action="" method="post"> + {{ form.hidden_tag() }} + <p> + {{ form.email.label }}<br> + {{ form.email(size=64) }}<br> + {% for error in form.email.errors %} + <span style="color: red;">[{{ error }}]</span> + {% endfor %} + </p> + </form> +{% endblock %} |
