2022-11-18 02:16:34 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2022-11-18 15:28:15 +00:00
|
|
|
{% block title %}Password Set{% endblock %}
|
2022-11-18 02:16:34 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<form>
|
|
|
|
<fieldset>
|
2022-11-18 15:28:15 +00:00
|
|
|
<legend>Password Set</legend>
|
2022-11-18 02:16:34 +00:00
|
|
|
<p>
|
2023-01-14 17:32:48 +00:00
|
|
|
Your password for <code>{{ email }}</code> has been set. You can
|
|
|
|
now <a href="{% url "login" %}">login</a>.
|
2022-11-18 02:16:34 +00:00
|
|
|
</p>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|