11 lines
222 B
HTML
11 lines
222 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<p>{% trans "Your password has been set. You may go ahead and log in now." %}</p>
|
|
|
|
<p><a href="{{ login_url }}">{% trans 'Log in' %}</a></p>
|
|
|
|
{% endblock %}
|