mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 15:39:38 +00:00
15 lines
375 B
HTML
15 lines
375 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Password Set{% endblock %}
|
|
|
|
{% block content %}
|
|
<form>
|
|
<fieldset>
|
|
<legend>Password Set</legend>
|
|
<p>
|
|
Your password for <tt>{{ email }}</tt> has been set. You can
|
|
now <a href="/auth/login/">login</a>.
|
|
</p>
|
|
</fieldset>
|
|
</form>
|
|
{% endblock %}
|