]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/auth/messages/password-reset.html
wiki: Only match usernames when a word starts with @
[ipfire.org.git] / src / templates / auth / messages / password-reset.html
1 {% extends "../../messages/base.html" %}
2
3 {% block content %}
4 <tr class="section">
5 <td>
6 <h1>{{ _("Hello %s!") % account.first_name }}</h1>
7
8 <p>
9 {{ _("You, or somebody else on your behalf, has requested to change your password.") }}
10 {{ _("If this was not you, please notify a team member.") }}
11 </p>
12
13 <table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0">
14 <tr class="button">
15 <td>
16 <a class="primary" href="https://www.ipfire.org/password-reset/{{ account.uid }}/{{ reset_code }}">
17 {{ _("Reset Password") }}
18 </a>
19 </td>
20 </tr>
21 </table>
22 </td>
23 </tr>
24 {% end block %}