mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
22 lines
372 B
HTML
22 lines
372 B
HTML
{% extends "single.html" %}
|
|
|
|
{% block title %}
|
|
Activation Email Sent
|
|
{% endblock %}
|
|
|
|
{% block single_content %}
|
|
<div class="card">
|
|
<div class="card-body p-6 text-center">
|
|
|
|
<h1 class="h4">
|
|
An email to validate your email is on its way.
|
|
</h1>
|
|
|
|
<p>
|
|
Please check your inbox/spam folder.
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %} |