2022-11-17 18:16:34 -08:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Email Sent{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<form>
|
|
|
|
<fieldset>
|
|
|
|
<legend>Email Sent</legend>
|
|
|
|
<p>
|
2023-01-14 09:32:48 -08:00
|
|
|
An email has been sent to <code>{{ email }}</code> - please follow
|
2022-11-17 18:16:34 -08:00
|
|
|
the link inside to finish creating your account.
|
|
|
|
</p>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|