takahe/templates/emails/password_reset.html

28 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2022-12-30 15:03:11 -08:00
{% extends "emails/base.html" %}
{% load mail_tags %}
{% autoescape off %}
2023-01-14 09:32:48 -08:00
{% block title %}{{ settings.MAIN_DOMAIN }} - Password Reset Requested{% endblock title %}
{% block subtitle %}{{ settings.MAIN_DOMAIN }} - Password Reset Requested{% endblock subtitle %}
2022-12-30 15:03:11 -08:00
2023-01-09 08:58:17 -08:00
{% block body_greeting %}
{% email_body_content "Hi there," %}
{% endblock body_greeting %}
2022-12-30 15:03:11 -08:00
2023-01-09 08:58:17 -08:00
{% block body_content %}
2023-01-14 09:32:48 -08: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 08:58:17 -08:00
{% email_body_content "To reset your password, go to this link:" %}
{% endblock body_content %}
2022-12-30 15:03:11 -08:00
2023-01-09 08:58:17 -08:00
{% block body_button %}
2023-01-14 09:32:48 -08:00
{% email_button button_text="Reset Password" button_link="https://{{ settings.MAIN_DOMAIN }}/auth/reset/{{ reset.token }}/" %}
2023-01-09 08:58:17 -08:00
{% endblock body_button %}
2022-12-30 15:03:11 -08:00
2023-01-09 08:58:17 -08:00
{% block body_signature %}
2023-01-14 09:32:48 -08:00
{% email_body_content "Thanks, Admins @{{ settings.MAIN_DOMAIN }}" %}
2023-01-09 08:58:17 -08:00
{% endblock body_signature %}
2022-12-30 15:03:11 -08:00
2023-01-09 08:58:17 -08: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 15:03:11 -08:00
{% endautoescape %}