b779ecaf14
All templates overridden for easier custom texts. Login_base.html for recovery and login pages
8 lines
305 B
HTML
8 lines
305 B
HTML
{% extends "password_reset/base.html" %}{% load i18n %}
|
|
|
|
{% block title %}{% trans "New password set" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>{% trans "Your password has successfully been reset. You can use it right now on the login page." %}</p>
|
|
<p><a href="/login">Log in</a></p>
|
|
{% endblock %} |