diff options
Diffstat (limited to 'app/templates/email')
| -rw-r--r-- | app/templates/email/reset_password.html | 12 | ||||
| -rw-r--r-- | app/templates/email/reset_password.txt | 11 |
2 files changed, 23 insertions, 0 deletions
diff --git a/app/templates/email/reset_password.html b/app/templates/email/reset_password.html new file mode 100644 index 0000000..f7403a5 --- /dev/null +++ b/app/templates/email/reset_password.html @@ -0,0 +1,12 @@ +<p>Dear {{ user.username }},</p> +<p> + To reset your password + <a href="{{ url_for('reset_password', token=token, _external=True) }}"> + click here + </a>. +</p> +<p>Alternatively, you can paste the following link in your browser's address bar:</p> +<p>{{ url_for('reset_password', token=token, _external=True) }}</p> +<p>If you have not requested a password reset then you can simply ignore this email.</p> +<p>Sincerely,</p> +<p>The AnnotateChange Team</p> diff --git a/app/templates/email/reset_password.txt b/app/templates/email/reset_password.txt new file mode 100644 index 0000000..da1330f --- /dev/null +++ b/app/templates/email/reset_password.txt @@ -0,0 +1,11 @@ +Dear {{ user.username }}, + +To reset your password click on the following link: + +{{ url_for('reset_password', token=token, _external=True) }} + +If you have not requested a password reset then you can simply ignore this email. + +Sincerely, + +The AnnotateChange Team |
