82 lines
2.4 KiB
HTML
82 lines
2.4 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 Successful - BDFR Web Interface</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
margin: 0;
|
|
padding: 0;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.success-container {
|
|
background: white;
|
|
padding: 2rem;
|
|
border-radius: 10px;
|
|
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
|
|
text-align: center;
|
|
max-width: 400px;
|
|
width: 90%;
|
|
}
|
|
.success-icon {
|
|
font-size: 3rem;
|
|
color: #4CAF50;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.success-title {
|
|
color: #333;
|
|
margin-bottom: 1rem;
|
|
font-size: 1.5rem;
|
|
}
|
|
.success-message {
|
|
color: #666;
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.5;
|
|
}
|
|
.redirect-message {
|
|
color: #888;
|
|
font-size: 0.9rem;
|
|
margin-top: 1rem;
|
|
}
|
|
.spinner {
|
|
border: 3px solid #f3f3f3;
|
|
border-top: 3px solid #667eea;
|
|
border-radius: 50%;
|
|
width: 30px;
|
|
height: 30px;
|
|
animation: spin 1s linear infinite;
|
|
margin: 0 auto 1rem;
|
|
}
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="success-container">
|
|
<div class="success-icon">✅</div>
|
|
<h1 class="success-title">Authentication Successful!</h1>
|
|
<p class="success-message">
|
|
You have successfully authenticated with Reddit. You can now use all features of the BDFR Web Interface.
|
|
</p>
|
|
<div class="spinner"></div>
|
|
<p class="redirect-message">
|
|
Redirecting you back to the main interface...
|
|
</p>
|
|
</div>
|
|
|
|
<script>
|
|
// Redirect to main page after 3 seconds
|
|
setTimeout(function() {
|
|
window.location.href = '/?authenticated=true';
|
|
}, 3000);
|
|
</script>
|
|
</body>
|
|
</html> |