You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
574 B
24 lines
574 B
{% extends "base_catalog.html" %}
|
|
{% load i18n %}
|
|
{% load url from future %}
|
|
|
|
{% block title %}{% trans "New password set" %}{% endblock %}
|
|
{% block bread_scrumbs %}
|
|
{% endblock %}
|
|
|
|
{% block page_title %}
|
|
<div class="page-title">
|
|
<h1>{% trans "Password recovery" %}</h1>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
{% block content_list %}
|
|
<div class="m-article">
|
|
<div class="item-wrap event clearfix">
|
|
<p>{% trans "Your password has successfully been reset. You can use it right now on the login page." %}</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
|