Anfänglicher Commit: Producion Version Stand: Oktober 2014
This commit is contained in:
34
templates/registration/password_reset_form.html
Normal file
34
templates/registration/password_reset_form.html
Normal file
@@ -0,0 +1,34 @@
|
||||
{% extends "base.html" %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}{% trans "Password reset" %}{% endblock %}
|
||||
|
||||
{% block maincontent %}
|
||||
|
||||
<h2 class="grid_12">{% trans "Password reset" %}</h2>
|
||||
<div class="grid_5">
|
||||
|
||||
<p>Du hast dein Passwort vergessen?</p>
|
||||
<p>Macht nichts!<br/>
|
||||
Solange die E-Mail Adresse von dir noch gültig ist, kannst du dein Passwort jederzeit wieder ändern.</p>
|
||||
|
||||
</div>
|
||||
|
||||
<form action="" method="post" class="grid_5">
|
||||
{% csrf_token %}
|
||||
<fieldset style="margin:-12px 0 0 0;">
|
||||
<legend>E-Mail zusenden</legend>
|
||||
{% for element in form %}
|
||||
<p>
|
||||
<label class="required" for="id_{{element.html_name}}">{%if element.help_text %}<img src="{{STATIC_URL}}icons/information.png" title="{{element.help_text}}" /> {% endif %}{{element.label}}</label>
|
||||
{{element}}
|
||||
{%if element.errors %} {{element.errors }} {% endif %}
|
||||
</p>
|
||||
{% endfor %}
|
||||
<br />
|
||||
<p class="buttonbar"><button type="submit"><img src="{{STATIC_URL}}icons/email_go.png" alt="submit"/> Zusenden</button></p>
|
||||
</fieldset>
|
||||
</form>
|
||||
<p class="grid_12">Einfach deine E-Mail-Adresse eingeben und wir senden dir die Anweisungen zum Zurücksetzen deines Passworts.</p>
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user