You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
982 B
14 lines
982 B
{% extends "notification/email/_base.html" %}
|
|
|
|
{% block content %}
|
|
<p style="margin: 0 0 20px">Для восстановления пароля нажмите кнопку ниже.</p>
|
|
<div style="margin-bottom: 10px;">
|
|
<a href="{{ domain }}{% url 'lilcity:password_reset_confirm' uidb64=uid token=token %}"
|
|
style="text-decoration: none; position: relative; padding: 13px 24px 12px;
|
|
background-image: linear-gradient(-225deg, #D1FF7F 0%, #56FFFD 100%); display: inline-block;
|
|
border-radius: 3px; font-size: 12px; color: #191919; text-transform: uppercase;
|
|
letter-spacing: 2px; text-align: center; transition: all .2s; z-index: 2;">Нажмите для восстановления</a>
|
|
<p>Или скопируйте ссылку ниже, и вставьте её в адресную строку браузера.</p>
|
|
<p>{{ domain }}{% url 'lilcity:password_reset_confirm' uidb64=uid token=token %}</p>
|
|
</div>
|
|
{% endblock content %}
|
|
|