345 lines
11 KiB
HTML
345 lines
11 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>SPEEDRUN ARENA - Admin Dashboard</title>
|
||
<script src="https://unpkg.com/@supabase/supabase-js@2"></script>
|
||
<style>
|
||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
||
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
body {
|
||
font-family: 'Inter', sans-serif;
|
||
background: #0a0a0f;
|
||
color: #ffffff;
|
||
min-height: 100vh;
|
||
background-image:
|
||
radial-gradient(circle at 20% 80%, #1a1a2e 0%, transparent 50%),
|
||
radial-gradient(circle at 80% 20%, #16213e 0%, transparent 50%),
|
||
radial-gradient(circle at 40% 40%, #0f3460 0%, transparent 50%);
|
||
}
|
||
|
||
.main-container {
|
||
max-width: 1400px;
|
||
margin: 0 auto;
|
||
padding: 2rem;
|
||
min-height: 100vh;
|
||
}
|
||
|
||
.header-section {
|
||
text-align: center;
|
||
margin-bottom: 3rem;
|
||
}
|
||
|
||
.main-title {
|
||
font-size: 4rem;
|
||
font-weight: 700;
|
||
background: linear-gradient(135deg, #00d4ff, #ff6b35, #ffd700);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
margin-bottom: 0.5rem;
|
||
letter-spacing: -0.02em;
|
||
}
|
||
|
||
.tagline {
|
||
font-size: 1.2rem;
|
||
color: #8892b0;
|
||
font-weight: 300;
|
||
}
|
||
|
||
.nav-buttons {
|
||
position: fixed;
|
||
top: 2rem;
|
||
right: 2rem;
|
||
display: flex;
|
||
gap: 1rem;
|
||
align-items: center;
|
||
z-index: 1000;
|
||
}
|
||
|
||
.btn {
|
||
padding: 0.75rem 1.5rem;
|
||
border: none;
|
||
border-radius: 0.75rem;
|
||
font-size: 0.9rem;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
transition: all 0.2s ease;
|
||
text-decoration: none;
|
||
display: inline-block;
|
||
}
|
||
|
||
.btn-primary {
|
||
background: linear-gradient(135deg, #00d4ff, #0891b2);
|
||
color: white;
|
||
}
|
||
|
||
.btn-primary:hover {
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
|
||
}
|
||
|
||
.btn-logout {
|
||
background: linear-gradient(135deg, #dc3545, #c82333);
|
||
color: white;
|
||
}
|
||
|
||
.btn-logout:hover {
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
|
||
}
|
||
|
||
.dashboard-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||
gap: 2rem;
|
||
margin-bottom: 2rem;
|
||
}
|
||
|
||
.welcome-card {
|
||
background: rgba(15, 23, 42, 0.8);
|
||
border: 1px solid #1e293b;
|
||
border-radius: 1rem;
|
||
padding: 2rem;
|
||
backdrop-filter: blur(20px);
|
||
margin-bottom: 2rem;
|
||
text-align: center;
|
||
}
|
||
|
||
.card {
|
||
background: rgba(15, 23, 42, 0.8);
|
||
border: 1px solid #1e293b;
|
||
border-radius: 1rem;
|
||
padding: 2rem;
|
||
backdrop-filter: blur(20px);
|
||
transition: all 0.2s ease;
|
||
}
|
||
|
||
.card:hover {
|
||
transform: translateY(-2px);
|
||
border-color: #00d4ff;
|
||
box-shadow: 0 10px 25px rgba(0, 212, 255, 0.1);
|
||
}
|
||
|
||
.card h3 {
|
||
color: #ffffff;
|
||
font-size: 1.3rem;
|
||
margin-bottom: 1rem;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 0.5rem;
|
||
}
|
||
|
||
.card p {
|
||
color: #8892b0;
|
||
line-height: 1.6;
|
||
}
|
||
|
||
.loading {
|
||
text-align: center;
|
||
padding: 2rem;
|
||
color: #8892b0;
|
||
}
|
||
|
||
.spinner {
|
||
border: 3px solid #1e293b;
|
||
border-top: 3px solid #00d4ff;
|
||
border-radius: 50%;
|
||
width: 40px;
|
||
height: 40px;
|
||
animation: spin 1s linear infinite;
|
||
margin: 0 auto 1rem;
|
||
}
|
||
|
||
@keyframes spin {
|
||
0% { transform: rotate(0deg); }
|
||
100% { transform: rotate(360deg); }
|
||
}
|
||
|
||
.user-info {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 0.5rem;
|
||
color: #8892b0;
|
||
font-size: 0.9rem;
|
||
}
|
||
|
||
.user-avatar {
|
||
width: 30px;
|
||
height: 30px;
|
||
border-radius: 50%;
|
||
background: linear-gradient(135deg, #00d4ff, #0891b2);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: white;
|
||
font-weight: bold;
|
||
font-size: 0.8rem;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.header {
|
||
padding: 1rem;
|
||
flex-direction: column;
|
||
gap: 1rem;
|
||
}
|
||
|
||
.nav-buttons {
|
||
flex-wrap: wrap;
|
||
justify-content: center;
|
||
}
|
||
|
||
.container {
|
||
padding: 0 1rem;
|
||
}
|
||
|
||
.dashboard-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="main-container">
|
||
<div class="nav-buttons">
|
||
<div class="user-info">
|
||
<div class="user-avatar" id="userAvatar">U</div>
|
||
<span id="userEmail">user@example.com</span>
|
||
</div>
|
||
<a href="/" class="btn btn-primary">Back to Times</a>
|
||
<button class="btn btn-logout" onclick="logout()">Logout</button>
|
||
</div>
|
||
|
||
<div class="header-section">
|
||
<h1 class="main-title">ADMIN DASHBOARD</h1>
|
||
<p class="tagline">Verwalte deine SPEEDRUN ARENA</p>
|
||
</div>
|
||
<div id="loading" class="loading">
|
||
<div class="spinner"></div>
|
||
<p>Loading dashboard...</p>
|
||
</div>
|
||
|
||
<div id="dashboardContent" style="display: none;">
|
||
<div class="welcome-card">
|
||
<h2>Admin Dashboard 🥷</h2>
|
||
<p>Welcome to the admin panel! Manage your ninja server from here.</p>
|
||
</div>
|
||
|
||
<div class="dashboard-grid">
|
||
<div class="card">
|
||
<h3>📊 Analytics</h3>
|
||
<p>Track your performance and monitor key metrics. This section will show detailed analytics once we implement the functionality.</p>
|
||
</div>
|
||
|
||
<div class="card">
|
||
<h3>⚡ Quick Actions</h3>
|
||
<p>Common tasks and shortcuts will be available here. We'll add buttons for creating new records, managing settings, and more.</p>
|
||
</div>
|
||
|
||
<div class="card">
|
||
<h3><EFBFBD><EFBFBD> Settings</h3>
|
||
<p>Configure your account preferences, security settings, and application options. This will be fully functional in the next phase.</p>
|
||
</div>
|
||
|
||
<div class="card">
|
||
<h3>📝 Recent Activity</h3>
|
||
<p>View your recent actions and system events. This will show a timeline of your activities once we connect it to the database.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<script>
|
||
// Supabase configuration
|
||
const SUPABASE_URL = 'https://lfxlplnypzvjrhftaoog.supabase.co';
|
||
const SUPABASE_ANON_KEY = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImxmeGxwbG55cHp2anJoZnRhb29nIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NDkyMTQ3NzIsImV4cCI6MjA2NDc5MDc3Mn0.XR4preBqWAQ1rT4PFbpkmRdz57BTwIusBI89fIxDHM8';
|
||
|
||
// Initialize Supabase client
|
||
const supabase = window.supabase.createClient(SUPABASE_URL, SUPABASE_ANON_KEY);
|
||
|
||
// Check authentication and load dashboard
|
||
async function initDashboard() {
|
||
try {
|
||
// Get current session
|
||
const { data: { session }, error } = await supabase.auth.getSession();
|
||
|
||
if (error) {
|
||
console.error('Error checking authentication:', error);
|
||
// Temporarily show dashboard for testing
|
||
displayUserInfo({ email: 'admin@speedrun-arena.com' });
|
||
showDashboard();
|
||
return;
|
||
}
|
||
|
||
if (!session) {
|
||
// No session, redirect to login
|
||
window.location.href = '/login';
|
||
return;
|
||
}
|
||
|
||
// User is authenticated, show dashboard
|
||
if (session.user) {
|
||
console.log('User data:', session.user);
|
||
displayUserInfo(session.user);
|
||
} else {
|
||
// Fallback if no user data
|
||
displayUserInfo({ email: 'admin@speedrun-arena.com' });
|
||
}
|
||
showDashboard();
|
||
|
||
} catch (error) {
|
||
console.error('An unexpected error occurred:', error);
|
||
// window.location.href = '/login';
|
||
}
|
||
}
|
||
|
||
// Display user information
|
||
function displayUserInfo(user) {
|
||
const userEmail = document.getElementById('userEmail');
|
||
const userAvatar = document.getElementById('userAvatar');
|
||
|
||
userEmail.textContent = user.email;
|
||
userAvatar.textContent = user.email.charAt(0).toUpperCase();
|
||
}
|
||
|
||
// Show dashboard content
|
||
function showDashboard() {
|
||
document.getElementById('loading').style.display = 'none';
|
||
document.getElementById('dashboardContent').style.display = 'block';
|
||
}
|
||
|
||
// Logout function
|
||
async function logout() {
|
||
try {
|
||
const { error } = await supabase.auth.signOut();
|
||
if (error) {
|
||
console.error('Error logging out:', error);
|
||
} else {
|
||
window.location.href = '/';
|
||
}
|
||
} catch (error) {
|
||
console.error('Error during logout:', error);
|
||
}
|
||
}
|
||
|
||
// Listen for auth state changes
|
||
supabase.auth.onAuthStateChange((event, session) => {
|
||
if (event === 'SIGNED_OUT' || !session) {
|
||
window.location.href = '/login';
|
||
}
|
||
});
|
||
|
||
// Initialize dashboard when page loads
|
||
initDashboard();
|
||
</script>
|
||
</div>
|
||
</body>
|
||
</html>
|