Anfänglicher Commit: Producion Version Stand: Oktober 2014
This commit is contained in:
28
templates/registration/password_change_form.html
Normal file
28
templates/registration/password_change_form.html
Normal file
@@ -0,0 +1,28 @@
|
||||
{% extends "base.html" %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}{% trans 'Password change' %}{% endblock %}
|
||||
|
||||
{% block callout %}
|
||||
<div id="callout">
|
||||
<h1>{% trans 'Password change' %}</h1>
|
||||
<p>{% trans "Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly." %}</p>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<fieldset>
|
||||
<legend>Passwort ändern:</legend>
|
||||
<form method="post" action="" class="cmxform">
|
||||
{%csrf_token%}
|
||||
{% if form.errors %}<p class="error"> Es sind Fehler beim ändern des Passwortes aufgetreten</p>{% endif %}
|
||||
{% include 'form.html' %}
|
||||
<div class="buttonbar">
|
||||
<button type="submit">
|
||||
<img src="{{STATIC_URL}}icons/lock_break.png" alt="{% trans "Login" %}" /> {% trans "Change Password" %}
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</fieldset>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user