You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
418 B
HTML
17 lines
418 B
HTML
{% extends 'layout.html' %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<div class="content formpage loginpage pure-g">
|
|
<div class="pure-u-1 pure-u-sm-1-2 pure-u-xl-1-3">
|
|
<h1>{% trans 'Password Reset' %}</h1>
|
|
<p>
|
|
{% trans 'Your password has been changed.' %}
|
|
{% trans 'You can now log in with your new password.' %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|