update/add password reset templates

This commit is contained in:
Vri 🌈 2023-07-30 22:22:53 +02:00
parent 826cdcfbfb
commit 0ccb9796d6
Signed by: vrifox
GPG key ID: D40098E5B60B2197
2 changed files with 25 additions and 3 deletions

View 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 %}