Vibe coded a bit more ... now we have session, attached picture and analysis, MOA group computation
This commit is contained in:
22
templates/auth/confirm_pending.html
Normal file
22
templates/auth/confirm_pending.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Confirm your email — Ballistic Analyzer{% endblock %}
|
||||
{% block content %}
|
||||
<h1>Check your inbox</h1>
|
||||
|
||||
<p style="color:#555;margin-bottom:1.25rem;">
|
||||
A confirmation link has been sent to <strong>{{ email }}</strong>.
|
||||
Click the link in that email to activate your account.
|
||||
</p>
|
||||
|
||||
<p style="color:#888;font-size:0.9rem;margin-bottom:1.5rem;">
|
||||
Didn't receive it? Check your spam folder, or request a new link below.
|
||||
</p>
|
||||
|
||||
<form method="post" action="{{ url_for('auth.resend_confirmation') }}">
|
||||
<input type="hidden" name="email" value="{{ email }}">
|
||||
<button type="submit"
|
||||
style="background:#f0f4ff;color:#1f77b4;border:1px solid #c0d4f0;border-radius:4px;padding:0.55rem 1.2rem;font-size:0.92rem;cursor:pointer;">
|
||||
Resend confirmation email
|
||||
</button>
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user