103 lines
2.6 KiB
HTML
103 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Email Verification - BNKops Influence</title>
|
|
<link rel="icon" href="data:,">
|
|
<link rel="stylesheet" href="/css/styles.css">
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
}
|
|
|
|
.verification-container {
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
|
|
max-width: 500px;
|
|
width: 90%;
|
|
text-align: center;
|
|
}
|
|
|
|
.spinner {
|
|
border: 4px solid #f3f3f3;
|
|
border-top: 4px solid #d73027;
|
|
border-radius: 50%;
|
|
width: 50px;
|
|
height: 50px;
|
|
animation: spin 1s linear infinite;
|
|
margin: 20px auto;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
.success-icon {
|
|
font-size: 64px;
|
|
color: #28a745;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.error-icon {
|
|
font-size: 64px;
|
|
color: #dc3545;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.message {
|
|
margin: 20px 0;
|
|
color: #666;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
padding: 12px 24px;
|
|
background-color: #d73027;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 6px;
|
|
font-weight: bold;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.btn:hover {
|
|
background-color: #c02822;
|
|
}
|
|
|
|
.logo {
|
|
color: #d73027;
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="verification-container">
|
|
<div class="logo">BNKops Influence</div>
|
|
|
|
<div id="verification-status">
|
|
<div class="loading">
|
|
<div class="spinner"></div>
|
|
<p class="message">Verifying your email...</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/js/api-client.js"></script>
|
|
<script src="/js/verify-email.js"></script>
|
|
</body>
|
|
</html>
|