Replit-Commit-Author: Agent Replit-Commit-Session-Id: 5e584ab0-c340-4432-97ef-1972582b60e9 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 6d4dbe7c-69e4-4510-bd62-638ff9c78d5c
111 lines
3.2 KiB
HTML
111 lines
3.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>Admin Login - Technical Turbulence</title>
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
|
|
background: #000;
|
|
color: #fff;
|
|
}
|
|
.login-container {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #000;
|
|
}
|
|
.login-box {
|
|
background: #1a1a1a;
|
|
border: 1px solid #333;
|
|
border-radius: 20px;
|
|
padding: 48px;
|
|
width: 90%;
|
|
max-width: 400px;
|
|
}
|
|
.login-title {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
margin-bottom: 32px;
|
|
text-align: center;
|
|
}
|
|
.form-group {
|
|
margin-bottom: 24px;
|
|
}
|
|
.form-label {
|
|
display: block;
|
|
color: #999;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.form-input {
|
|
width: 100%;
|
|
padding: 12px 16px;
|
|
background: #0d0d0d;
|
|
border: 1px solid #333;
|
|
border-radius: 8px;
|
|
color: #fff;
|
|
font-size: 16px;
|
|
}
|
|
.form-input:focus {
|
|
outline: none;
|
|
border-color: #3b82f6;
|
|
}
|
|
.login-button {
|
|
width: 100%;
|
|
padding: 14px;
|
|
background: #3b82f6;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
.login-button:hover {
|
|
background: #60a5fa;
|
|
transform: translateY(-2px);
|
|
}
|
|
.error-message {
|
|
background: rgba(239, 68, 68, 0.1);
|
|
border: 1px solid rgba(239, 68, 68, 0.3);
|
|
color: #ef4444;
|
|
padding: 12px 16px;
|
|
border-radius: 8px;
|
|
margin-bottom: 24px;
|
|
font-size: 14px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<div class="login-box">
|
|
<h1 class="login-title">Admin Login</h1>
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
{% for category, message in messages %}
|
|
<div class="error-message">{{ message }}</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
<form method="POST">
|
|
<div class="form-group">
|
|
<label class="form-label">Password</label>
|
|
<input type="password" name="password" class="form-input" required autofocus>
|
|
</div>
|
|
<button type="submit" class="login-button">Login</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|