mirror of
https://github.com/penpot/penpot.git
synced 2025-02-10 00:58:26 -05:00
23 lines
469 B
HTML
23 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 %}
|