FitTrackee/fittrackee/emails/templates/account_confirmation/body.html

27 lines
1.7 KiB
HTML
Raw Normal View History

2022-03-20 19:14:42 +01:00
{% extends "layout.html" %}
2022-07-02 19:25:07 +02:00
{% block title %}{{ _('Confirm your account') }}{% endblock %}
{% block preheader %}{{ _('Use this link to confirm your account.') }}{% endblock %}
{% block content %}<p>{{ _('You have created an account on FitTrackee.') }} {{ _('Use the button below to confirm your address email.') }}</p>
2022-03-19 22:02:06 +01:00
<table class="body-action" align="center" width="100%" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td align="center">
<table width="100%" border="0" cellspacing="0" cellpadding="0" role="presentation">
<tr>
<td align="center">
2022-07-02 19:25:07 +02:00
<a href="{{account_confirmation_url}}" class="f-fallback button button--green" target="_blank">{{ _('Verify your email') }}</a>
2022-03-19 22:02:06 +01:00
</td>
</tr>
</table>
</td>
</tr>
2022-07-02 19:25:07 +02:00
</table>{% endblock %}
{% block not_initiated %}{{ _("If this account creation wasn't initiated by you, please ignore this email.") }}{% endblock %}
{% block url_to_paste %}<table class="body-sub" role="presentation">
2022-03-19 22:02:06 +01:00
<tr>
<td>
2022-07-02 19:25:07 +02:00
<p class="f-fallback sub">{{ _("If you're having trouble with the button above, copy and paste the URL below into your web browser.") }}</p>
2022-03-19 22:02:06 +01:00
<p class="f-fallback sub">{{account_confirmation_url}}</p>
</td>
</tr>
2022-06-26 23:04:47 +02:00
</table>{% endblock %}