26 lines
836 B
HTML
26 lines
836 B
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Admin — Cantina</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<h1>🔐 Admin</h1>
|
|
{% if error %}
|
|
<div class="alert alert-error">{{ error }}</div>
|
|
{% endif %}
|
|
<form method="post" action="/admin/login" class="login-form">
|
|
<label>Usuario</label>
|
|
<input type="text" name="username" class="input" autofocus required>
|
|
<label>Contraseña</label>
|
|
<input type="password" name="password" class="input" required>
|
|
<button type="submit" class="btn-primary">Ingresar</button>
|
|
</form>
|
|
<a href="/" class="back-link">← Volver al reproductor</a>
|
|
</div>
|
|
</body>
|
|
</html>
|