mirror of
https://github.com/simple-login/app.git
synced 2024-11-13 07:31:12 +01:00
3a4dac15f0
* enable plausible roll-up, use everything.simplelogin.com * versionning analytics.js to avoid caching * allow plausible custom event * send "Complete registration" event when user finishes signup * remove blank lines
13 lines
417 B
HTML
13 lines
417 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 %}
|
|
{% block script %}<script>plausible('Complete registration')</script>{% endblock %}
|