update/add password reset templates
This commit is contained in:
parent
826cdcfbfb
commit
0ccb9796d6
2 changed files with 25 additions and 3 deletions
15
password_reset_confirmation.html
Normal file
15
password_reset_confirmation.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
{% extends "_base.html" %}
|
||||
{% block title %}Zurücksetzen des Passworts bestätigen{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<!--Use a hidden form to resubmit the information necessary to reset the password-->
|
||||
<form method="post">
|
||||
<input type="hidden" name="sid" value="{{ sid }}">
|
||||
<input type="hidden" name="token" value="{{ token }}">
|
||||
<input type="hidden" name="client_secret" value="{{ client_secret }}">
|
||||
|
||||
<p>Du hast eine Anfrage zum <strong>Zurücksetzen deines Cozy Chat-Passworts</strong> gestellt. Klicke auf den folgenden Link, um dies zu bestätigen. </p>
|
||||
<p>Falls du dies nicht wolltest, schließe bitte einfach diese Seite. Dein Passwort wird unverändert bleiben.</p>
|
||||
<p><button type="submit">Ich bestätige, mein Passwort ändern zu wollen</button></p>
|
||||
</form>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue