Files
aptool/templates/admin_login.html
2026-01-26 04:46:56 -06:00

133 lines
3.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>APtool Admin - Login</title>
<style>
*, *::before, *::after { box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
margin: 0;
padding: 16px;
background: #1a1a2e;
color: #e0e0e0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.login-box {
background: #16213e;
border-radius: 12px;
padding: 32px 24px;
width: 100%;
max-width: 320px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
text-align: center;
}
h1 {
font-size: 1.5rem;
margin: 0 0 4px;
}
.badge {
display: inline-block;
background: #2563eb;
color: #fff;
font-size: 0.7rem;
font-weight: 700;
padding: 2px 8px;
border-radius: 4px;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 8px;
}
.subtitle {
color: #999;
font-size: 0.9rem;
margin: 0 0 24px;
}
.field {
margin-bottom: 12px;
}
.field input {
width: 100%;
padding: 14px;
font-size: 1rem;
text-align: center;
border: 2px solid #2a2a4a;
border-radius: 8px;
background: #0f3460;
color: #e0e0e0;
}
.field input:focus {
outline: none;
border-color: #2563eb;
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
button {
width: 100%;
padding: 14px;
font-size: 1.1rem;
font-weight: 600;
color: #fff;
background: #2563eb;
border: none;
border-radius: 8px;
cursor: pointer;
margin-top: 8px;
}
button:active {
background: #1d4ed8;
}
.error {
color: #fca5a5;
background: #3b1111;
padding: 10px;
border-radius: 8px;
margin-top: 16px;
font-weight: 600;
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="login-box">
<div style="color:#999;font-size:0.8rem;margin-bottom:8px;">JCP Wifi Migration 2026</div>
<h1>APtool</h1>
<span class="badge">Admin</span>
<p class="subtitle">Enter admin credentials</p>
<form method="POST" action="/admin/login">
<div class="field">
<input type="text" name="username" placeholder="Username" required autofocus autocomplete="username">
</div>
<div class="field">
<input type="password" name="password" placeholder="Password" required autocomplete="current-password">
</div>
<button type="submit">Log In</button>
</form>
{% if error %}
<div class="error">{{ error }}</div>
{% endif %}
</div>
<div style="text-align:center;margin-top:16px;">
<a href="/login" style="color:#666;font-size:0.8rem;text-decoration:none;">Tech Login</a>
</div>
<div style="text-align:center;margin-top:24px;color:#555;font-size:0.7rem;">&copy; 2026 Mack Allison, sdAnywhere LLC (with Claude Code)</div>
</body>
</html>