takahe/templates/emails/password_reset.html

28 wiersze
1.2 KiB
HTML
Czysty Zwykły widok Historia

2022-12-30 23:03:11 +00:00
{% extends "emails/base.html" %}
{% load mail_tags %}
{% autoescape off %}
2023-01-14 17:32:48 +00:00
{% block title %}{{ settings.MAIN_DOMAIN }} - Password Reset Requested{% endblock title %}
{% block subtitle %}{{ settings.MAIN_DOMAIN }} - Password Reset Requested{% endblock subtitle %}
2022-12-30 23:03:11 +00:00
2023-01-09 16:58:17 +00:00
{% block body_greeting %}
{% email_body_content "Hi there," %}
{% endblock body_greeting %}
2022-12-30 23:03:11 +00:00
2023-01-09 16:58:17 +00:00
{% block body_content %}
2023-01-14 17:32:48 +00:00
{% email_body_content "A password reset was requested for your account ({{ reset.user.email }}) at {{ Config.system.site_name }} (https://{{ settings.MAIN_DOMAIN }})." %}
2023-01-09 16:58:17 +00:00
{% email_body_content "To reset your password, go to this link:" %}
{% endblock body_content %}
2022-12-30 23:03:11 +00:00
2023-01-09 16:58:17 +00:00
{% block body_button %}
2023-01-14 17:32:48 +00:00
{% email_button button_text="Reset Password" button_link="https://{{ settings.MAIN_DOMAIN }}/auth/reset/{{ reset.token }}/" %}
2023-01-09 16:58:17 +00:00
{% endblock body_button %}
2022-12-30 23:03:11 +00:00
2023-01-09 16:58:17 +00:00
{% block body_signature %}
2023-01-14 17:32:48 +00:00
{% email_body_content "Thanks, Admins @{{ settings.MAIN_DOMAIN }}" %}
2023-01-09 16:58:17 +00:00
{% endblock body_signature %}
2022-12-30 23:03:11 +00:00
2023-01-09 16:58:17 +00:00
{% block extra_footer %}
{% email_footer "If this was not you, then please ignore this message - your password will not be reset if this link is not visited." %}
{% endblock extra_footer %}
2022-12-30 23:03:11 +00:00
{% endautoescape %}