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