Blame view

templates/registration/password_change_done.html 419 Bytes
janek37 authored
1
2
3
4
{% extends "base.html" %}
{% load i18n %}
{% load url from future %}
janek37 authored
5
{% block userlinks %}{% trans 'Change password' %} /
janek37 authored
6
    <a href="{% url 'auth_logout' %}">{% trans 'Log out' %}</a>{% endblock %}
janek37 authored
7
8
9
10
11

{% block title %}{% trans 'Password change successful' %}{% endblock %}

{% block content %}
janek37 authored
12
    <h1>{% trans 'Password change successful' %}</h1>
janek37 authored
13
janek37 authored
14
    <p>{% trans 'Your password was changed.' %}</p>
janek37 authored
15
16

{% endblock %}