first commit
This commit is contained in:
26
public_web/templates/auth/verify_email.html
Normal file
26
public_web/templates/auth/verify_email.html
Normal file
@@ -0,0 +1,26 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user