medor.www
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

password_reset_confirm.html
text/html

Download raw (434 bytes)

{% extends "registration/registration_base.html" %}
{% load i18n %}

{% block title %}{% trans "Confirm password reset" %}{% endblock %}

{% block content %}
<p>{% trans "Enter your new password below to reset your password:" %}</p>
<form method="post" action="">
    {% csrf_token %}
    {{ form.as_p }}
    <input type="submit" value="{% trans 'Set password' %}" />
</form>
{% endblock %}


{# This is used by django.contrib.auth #}