28 lines
836 B
Plaintext
28 lines
836 B
Plaintext
{% extends 'mails/base_layout.mjml.njk' %}
|
|
|
|
{% block body %}
|
|
<mj-section>
|
|
<mj-column>
|
|
<mj-text mj-class="title">
|
|
Remove your password on your {{ app.name }} account
|
|
</mj-text>
|
|
<mj-text>
|
|
Someone wants to remove your password from your account.
|
|
<br><br>
|
|
<strong>Do not click on this if this is not you!</strong>
|
|
</mj-text>
|
|
|
|
<mj-button href="{{ link | safe }}">
|
|
Remove my {{ app.name }} password
|
|
</mj-button>
|
|
</mj-column>
|
|
</mj-section>
|
|
{% endblock %}
|
|
|
|
{% block text %}
|
|
Hi!
|
|
Someone wants to remove your password from your {{ app.name }} account.
|
|
|
|
To confirm this action and remove your password, please follow this link: {{ link|safe }}
|
|
{% endblock %}
|