mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 07:29:43 +00:00
15 lines
384 B
HTML
15 lines
384 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Email Sent{% endblock %}
|
|
|
|
{% block content %}
|
|
<form>
|
|
<fieldset>
|
|
<legend>Email Sent</legend>
|
|
<p>
|
|
An email has been sent to <tt>{{ email }}</tt> - please follow
|
|
the link inside to finish creating your account.
|
|
</p>
|
|
</fieldset>
|
|
</form>
|
|
{% endblock %}
|