18 lines
406 B
HTML
18 lines
406 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block breadcrumbs %}
|
|
<div class="breadcrumbs">
|
|
<a href="{% url 'admin:index' %}">{% translate 'Home' %}</a>
|
|
› {% translate 'Password reset' %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p>{% translate "Your password has been set. You may go ahead and log in now." %}</p>
|
|
|
|
<p><a href="{{ login_url }}">{% translate 'Log in' %}</a></p>
|
|
|
|
{% endblock %}
|