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.
 
 
 
 
 
 

34 lines
941 B

{% extends "base_catalog.html" %}
{% load i18n %}
{% load url from future %}
{% block title %}{% trans "Password recovery" %}{% 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">
<form class="pw-form" method="post" action="{{ url }}">
{% csrf_token %}
<div class="pwf-line period">
<div class="pwf-field">
{{ form.username_or_email }}
</div>
</div>
<div class="pwf-buttons-line">
<button type="submit" class="icon-check">{% trans 'применить' %}</button>
</div>
</form>
</div>
</div>
{% endblock %}