takahe/templates/emails/account_new.html

28 lines
1.2 KiB
HTML
Raw 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 }} - New Account Created{% endblock title %}
{% block subtitle %}{{ settings.MAIN_DOMAIN }} - New Account Created{% 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 "Your email address was used to create a new account at {{ config.site_name }} (https://{{ settings.MAIN_DOMAIN }})." %}
2023-01-09 08:58:17 -08:00
{% email_body_content "To confirm your new account, 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="Confirm New Account" 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 email will not be used to make an account if this link is not visited." %}
{% endblock extra_footer %}
2022-12-30 15:03:11 -08:00
{% endautoescape %}