sarmentine/templates/auth/check_email.html
Butter 8d4042e31a
Some checks failed
CI / Check (push) Failing after 20s
CI / Build & Push Docker Image (push) Has been skipped
CI / Deploy to Rocky (push) Has been skipped
added email auth and posting
really coming together now.
2026-05-04 17:20:07 -04:00

27 lines
876 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="site-title">check your email</div>
<div class="site-subtitle">:: we sent a verification link to {{ email }} ::</div>
<hr class="divider">
<div class="post">
<div class="post-body">
<p>We've sent a verification email to <strong>{{ email }}</strong>.</p>
<p>Click the link in the email to verify your account.</p>
</div>
</div>
<div class="post" style="margin-top:12px;">
<div class="post-body">
<p style="color:#888;font-size:12px;">Didn't receive it? You can request another:</p>
<form method="post" action="/auth/resend-verification">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<input type="hidden" name="email" value="{{ email }}">
<button class="form-submit" type="submit">resend verification →</button>
</form>
</div>
</div>
{% endblock %}