b779ecaf14
All templates overridden for easier custom texts. Login_base.html for recovery and login pages
12 lines
301 B
HTML
12 lines
301 B
HTML
{% extends "password_reset/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Password recovery" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="post" action="{{ url }}">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<p><input type="submit" value="{% trans "Send" %}"></p>
|
|
</form>
|
|
{% endblock %} |