21 lines
902 B
HTML
21 lines
902 B
HTML
{% extends "emails/base_email.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div style="font-size: 14px; line-height: 1.6; color: #333333; margin-bottom: 16px;">
|
|
Кто-то отправил вам секрет.
|
|
</div>
|
|
|
|
<div style="text-align: center; margin: 16px 0 14px 0;">
|
|
<a href="{{ base_url }}/my-secrets" style="display: inline-block; padding: 10px 28px; background-color: #000000; color: #ffffff; text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 1px;">МОИ СЕКРЕТЫ</a>
|
|
</div>
|
|
|
|
<div style="font-size: 11px; color: #888888; text-align: center; word-break: break-all; margin-bottom: 14px;">
|
|
{{ base_url }}/my-secrets
|
|
</div>
|
|
|
|
<div style="font-size: 11px; color: #666666; border-top: 1px solid #dddddd; padding-top: 12px; margin-top: 8px; line-height: 1.5;">
|
|
Секрет доступен для одноразового просмотра.
|
|
</div>
|
|
|
|
{% endblock %} |