try: add html password reset

This commit is contained in:
2025-07-07 21:09:36 +02:00
parent 4856c720b1
commit ac2147095a

View File

@@ -0,0 +1,16 @@
{% extends "fellchensammlung/mail/base.html" %}
{% load i18n %}
{% block title %}
{{ site.name }}: {% trans "Account aktivieren" %}
{% endblock %}
{% block content %}
<p>
{% trans 'Jemand hat um versucht dein Passwort zurückzusetzen. Wenn das nicht du warst, meld dich bitte unter info@notfellchen.org und ignoriere diese E-Mail' %}
</p>
<a href="{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}"
class="cta-button">{% translate 'Jetzt aktivieren' %}</a>
{% endblock %}