19 lines
487 B
HTML
19 lines
487 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<h3>Account recovery</h3>
|
||
|
|
||
|
A user at {{ app_link() }} has attempted to recover their account
|
||
|
using this email address.
|
||
|
<br>
|
||
|
<br>
|
||
|
If you made this request, please click the following link to recover your account and
|
||
|
change your password:
|
||
|
{{ app_link('recovery?code=' + token) }}
|
||
|
<br><br>
|
||
|
If you did not make this request, your account has not been compromised and the user was
|
||
|
not given access. Please disregard this email.
|
||
|
|
||
|
{% endblock %}
|