|
|
<!DOCTYPE html> |
|
|
<html> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Email Verified - TextTrace</title> |
|
|
<style> |
|
|
body { |
|
|
margin: 0; |
|
|
padding: 0; |
|
|
font-family: "Segoe UI", Arial, sans-serif; |
|
|
background-color: #f5e6ca; |
|
|
display: flex; |
|
|
justify-content: center; |
|
|
align-items: center; |
|
|
height: 100vh; |
|
|
color: #4b3621; |
|
|
} |
|
|
|
|
|
.container { |
|
|
background: rgba(255, 255, 255, 0.85); |
|
|
backdrop-filter: blur(10px); |
|
|
-webkit-backdrop-filter: blur(10px); |
|
|
border-radius: 12px; |
|
|
padding: 40px; |
|
|
width: 90%; |
|
|
max-width: 500px; |
|
|
text-align: center; |
|
|
box-shadow: 0 8px 30px rgba(139, 90, 43, 0.15); |
|
|
border: 1px solid rgba(139, 90, 43, 0.1); |
|
|
} |
|
|
|
|
|
.success-icon { |
|
|
width: 80px; |
|
|
height: 80px; |
|
|
background-color: #8b5a2b; |
|
|
border-radius: 50%; |
|
|
display: flex; |
|
|
justify-content: center; |
|
|
align-items: center; |
|
|
margin: 0 auto 24px; |
|
|
} |
|
|
|
|
|
.checkmark { |
|
|
color: white; |
|
|
font-size: 40px; |
|
|
font-weight: bold; |
|
|
} |
|
|
|
|
|
h1 { |
|
|
margin: 0 0 24px 0; |
|
|
color: #8b5a2b; |
|
|
font-size: 28px; |
|
|
font-weight: 600; |
|
|
} |
|
|
|
|
|
p { |
|
|
font-size: 16px; |
|
|
margin-bottom: 20px; |
|
|
line-height: 1.6; |
|
|
color: #6e4f34; |
|
|
} |
|
|
|
|
|
.message { |
|
|
margin-bottom: 32px; |
|
|
} |
|
|
|
|
|
.btn { |
|
|
display: inline-block; |
|
|
padding: 12px 32px; |
|
|
font-size: 16px; |
|
|
color: #fff; |
|
|
background-color: #8b5a2b; |
|
|
text-decoration: none; |
|
|
border-radius: 6px; |
|
|
transition: all 0.3s ease; |
|
|
font-weight: 500; |
|
|
cursor: pointer; |
|
|
border: none; |
|
|
box-shadow: 0 2px 8px rgba(139, 90, 43, 0.3); |
|
|
} |
|
|
|
|
|
.btn:hover { |
|
|
background-color: #7a4f26; |
|
|
transform: translateY(-2px); |
|
|
box-shadow: 0 4px 12px rgba(139, 90, 43, 0.4); |
|
|
} |
|
|
|
|
|
.btn:active { |
|
|
transform: translateY(0); |
|
|
} |
|
|
|
|
|
.footer { |
|
|
margin-top: 32px; |
|
|
font-size: 14px; |
|
|
color: #6e4f34; |
|
|
opacity: 0.8; |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body> |
|
|
<div class="container"> |
|
|
<div class="success-icon"> |
|
|
<span class="checkmark">✓</span> |
|
|
</div> |
|
|
<h1>Email Successfully Verified</h1> |
|
|
<div class="message"> |
|
|
<p>Your email address has been confirmed and your TextTrace account is now fully activated.</p> |
|
|
<p>You can now close this window and continue using TextTrace from your Chrome extensions.</p> |
|
|
</div> |
|
|
<button class="btn" onclick="window.close()">Close Window</button> |
|
|
<div class="footer"> |
|
|
<p>© 2025 TextTrace. All rights reserved.</p> |
|
|
</div> |
|
|
</div> |
|
|
</body> |
|
|
</html> |