All materials
login.html
htmllogin.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kabylie Gold - Buyer Portal</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="login-container">
<div class="login-header">
<h1>Kabylie Gold</h1>
<p class="tagline">Premium Olive Oil from Bejaia, Algeria</p>
<p class="subtitle">Wholesale Buyer Portal</p>
</div>
<form method="POST" action="/login" class="login-form">
{% if error %}
<div class="error-message">{{ error }}</div>
{% endif %}
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required placeholder="buyer@company.com">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit" class="btn-login">Sign In</button>
</form>
<p class="footer-text">Contact orders@kabylie-gold.dz for account access</p>
</div>
</body>
</html>