27 lines
773 B
HTML
27 lines
773 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Verify Email - Code of Conquest{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="auth-container">
|
|
<h1 class="page-title">Email Verification</h1>
|
|
<p class="page-subtitle">Confirming your email address</p>
|
|
|
|
<div class="decorative-line"></div>
|
|
|
|
<div class="text-center">
|
|
<div class="success-message">
|
|
Your email has been verified successfully!
|
|
</div>
|
|
|
|
<p class="mt-2 mb-2" style="color: var(--text-secondary);">
|
|
You can now log in to your account and begin your adventure.
|
|
</p>
|
|
|
|
<button class="btn btn-primary" onclick="window.location.href='{{ url_for('auth_views.login') }}'">
|
|
Go to Login
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|