30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Acceder — Lista de la Compra</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
</head>
|
|
<body class="login-page">
|
|
<div class="login-card">
|
|
<h1>🛒 Lista de la Compra</h1>
|
|
<p class="subtitle">Inicia sesion para continuar</p>
|
|
{% if error %}
|
|
<div class="alert">{{ error }}</div>
|
|
{% endif %}
|
|
<form method="post">
|
|
<input type="hidden" name="next" value="{{ next }}">
|
|
<label for="usuario">Usuario</label>
|
|
<input id="usuario" name="usuario" type="text"
|
|
placeholder="tu usuario" autocomplete="username" required autofocus>
|
|
<label for="password">Contrasena</label>
|
|
<input id="password" name="password" type="password"
|
|
placeholder="••••••••" autocomplete="current-password" required>
|
|
<button type="submit" class="btn btn-primary" style="width:100%; margin-top:.5rem;">
|
|
Entrar
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |