Merge branch 'main' into lang_de
This commit is contained in:
33
static/templates/new_password_form.st
Normal file
33
static/templates/new_password_form.st
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
«head()»
|
||||
«userinfo()»
|
||||
|
||||
<body id="login">
|
||||
«navigation()»
|
||||
«messages()»
|
||||
<h1>neues Account-Passwort setzen</h1>
|
||||
<form method="POST">
|
||||
<fieldset>
|
||||
|
||||
Hallo «if(data.user.name)»«data.user.name»«else»«data.user.email»«endif»! Du kannst hier ein neues Passwort für deinen Account «data.email» setzen:
|
||||
<legend>Login-Daten</legend>
|
||||
<label>
|
||||
<input enabled="false" value="«data.user.email»" />
|
||||
Email-Adresse
|
||||
</label>
|
||||
<label>
|
||||
<input type="password" name="password" value="" id="password" />
|
||||
Passwort
|
||||
</label>
|
||||
<label>
|
||||
<input type="password" name="password-repeat" value="" id="password-repeat" />
|
||||
Passwort (Wiederholung)
|
||||
</label>
|
||||
<input type="hidden" name="token" value="«data.token»" />
|
||||
<button type="submit">neues Passwort speichern</button>
|
||||
</fieldset>
|
||||
</form>
|
||||
<a href="reset-pw">Passwort vergessen?</a>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user