summaryrefslogtreecommitdiffstats
path: root/accounts/templates/mail/lost_password.txt
blob: 6d38f158f8250a7fe67c50687ceac1202f71ce72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends 'mail/_base.txt' %}

{% block subject %}Passwort vergessen{% endblock %}
{% block sender %}{{ config['MAIL_CONFIRM_SENDER'] }}{% endblock %}

{% block body -%}
Hallo {{ username }},

Jemand, vermutlich du, hat auf spline accounts einen Link zum Ändern
deines Passworts angefordert.

Hier kannst du dein Passwort ändern:
    <{{ url_for('default.lost_password_complete', _external=True,
                token=confirm('lost_password', username)) }}>


Wenn du diese Mail nicht angefordert hast, brauchst du nichts
weiter zu tun. Dein altes Passwort bleibt dann weiter gültig.
{% endblock %}