This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/auth/perform_reset_success.html

16 lines
375 B
HTML
Raw Normal View History

2022-11-18 03:16:34 +01:00
{% extends "base.html" %}
{% block title %}Password Set{% endblock %}
2022-11-18 03:16:34 +01:00
{% block content %}
<form>
<fieldset>
<legend>Password Set</legend>
2022-11-18 03:16:34 +01:00
<p>
Your password for <tt>{{ email }}</tt> has been set. You can
now <a href="/auth/login/">login</a>.
2022-11-18 03:16:34 +01:00
</p>
</fieldset>
</form>
{% endblock %}