random-access/templates/auth_success.html

83 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Authentication Complete - Random Access</title>
<style>
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.container {
text-align: center;
max-width: 600px;
padding: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
}
.title {
font-size: 3.5rem;
font-weight: 300;
margin-bottom: 30px;
letter-spacing: -2px;
}
.message {
font-size: 1.8rem;
font-weight: 300;
line-height: 1.4;
margin-bottom: 20px;
}
.checkmark {
font-size: 4rem;
margin-bottom: 20px;
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-10px);
}
60% {
transform: translateY(-5px);
}
}
@media (max-width: 768px) {
.title {
font-size: 2.5rem;
}
.message {
font-size: 1.4rem;
}
.container {
margin: 20px;
padding: 30px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="checkmark"></div>
<h1 class="title">Authentication Complete!</h1>
<p class="message">Please check the game for the next steps.</p>
</div>
</body>
</html>