0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-25 07:58:49 -05:00
penpot/backend/resources/emails/password-recovery/en.html
2020-06-02 10:43:02 +02:00

22 lines
469 B
HTML

{% extends "emails/base.html" %}
{% block content %}
<p>Hello {{name}}!</p>
<p>We received a request to reset your password. Click the link
below to choose a new one:</p>
<a class="btn-primary" href="{{ public-uri }}/#/auth/recovery?token={{token}}">
Reset password.
</a>
<p>
If you received this email by mistake, you can safely ignore
it. Your password won't be changed.
</p>
<p>Enjoy!</p>
<p>The UXBOX team.</p>
{% endblock %}