-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2a60b94
commit 0e26adc
Showing
4 changed files
with
320 additions
and
310 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
{% extends 'email/templates/default.twig' %} | ||
|
||
{% block preheader %}Instructions to reset your account password may be found here.{% endblock %} | ||
|
||
{% block content %} | ||
<p>Hi there,</p> | ||
<p>Looks like you requested a password reset.</p> | ||
<table border="0" cellpadding="0" cellspacing="0" class="btn btn-primary"> | ||
<tbody> | ||
<tr> | ||
<td align="left"> | ||
<table border="0" cellpadding="0" cellspacing="0"> | ||
<tbody> | ||
<tr> | ||
<td> <a href="{{ base_url }}{{ path_for('auth.password.reset') }}?identifier={{ identifier }}&token={{ token }}" target="_blank">Reset my password</a> </td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</td> | ||
</tr> | ||
</tbody> | ||
<meta itemprop="name" content="Confirm Email"/> | ||
<table width="100%" cellpadding="0" cellspacing="0"> | ||
<tr> | ||
<td class="content-block"> | ||
<b>Hi there,</b> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="content-block"> | ||
We received a request to reset your {{ settings.site.title | default('sleeti') }} account password. If you requested this change, click the link below to reset your passwrd. If you did not request this reset, disregard this email. However, pay attention to your email account security; if this email is compromised, <b>so is your {{ settings.site.title | default('sleeti') }} account</b>! | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="content-block" itemprop="handler" itemscope itemtype="http://schema.org/HttpActionHandler"> | ||
<a href="{{ base_url }}{{ path_for('auth.password.reset') }}?identifier={{ identifier }}&token={{ token }}" target="_blank" class="btn-primary" itemprop="url">Reset my password</a> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="content-block"> | ||
— {{ settings.site.title | default('sleeti') }} | ||
</td> | ||
</tr> | ||
</table> | ||
<p>If you requested this reset, click the link above to reset your password.</p> | ||
<p>If you did not request this reset, disregard this email. However, pay attention to your email account security; if this email is compromised, <b>so is your {{ settings.site.title | default('sleeti') }} account</b>!</p> | ||
{% endblock %} |
Oops, something went wrong.