80 lines
2.1 KiB
HTML
80 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Authentication Error</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 20px;
|
|
}
|
|
.container {
|
|
background: white;
|
|
border-radius: 20px;
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
|
|
padding: 40px;
|
|
max-width: 600px;
|
|
width: 100%;
|
|
}
|
|
h1 {
|
|
color: #e74c3c;
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
.error-icon {
|
|
text-align: center;
|
|
font-size: 64px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.error-message {
|
|
background: #f8d7da;
|
|
border: 2px solid #f5c6cb;
|
|
color: #721c24;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
margin: 20px 0;
|
|
}
|
|
.btn {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 12px;
|
|
margin-top: 20px;
|
|
background: #667eea;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
}
|
|
.btn:hover {
|
|
background: #5568d3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="error-icon">❌</div>
|
|
<h1>Authentication Failed</h1>
|
|
<div class="error-message" id="errorMessage">
|
|
Something went wrong during authentication.
|
|
</div>
|
|
<a href="/api/v1/auth/social/test/" class="btn">Try Again</a>
|
|
</div>
|
|
|
|
<script>
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
const error = urlParams.get('error');
|
|
if (error) {
|
|
document.getElementById('errorMessage').textContent = error;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|