23 lines
836 B
HTML
23 lines
836 B
HTML
{% 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 %}
|