bmc_hub/docs/design_reference/login.html

120 lines
3.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BMC Hub - Login</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<style>
:root {
--bg-body: #f8f9fa;
--bg-card: #ffffff;
--text-primary: #2c3e50;
--text-secondary: #6c757d;
--accent: #0f4c75;
--accent-light: #eef2f5;
--border-radius: 12px;
}
body {
background-color: var(--bg-body);
color: var(--text-primary);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.login-card {
background: var(--bg-card);
border: none;
border-radius: var(--border-radius);
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
width: 100%;
max-width: 400px;
padding: 2.5rem;
}
.brand-logo {
width: 48px;
height: 48px;
background-color: var(--accent);
color: white;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
margin-bottom: 1.5rem;
}
.form-control {
padding: 0.8rem 1rem;
border-radius: 8px;
border: 1px solid #eee;
background-color: #fcfcfc;
}
.form-control:focus {
border-color: var(--accent);
box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.1);
}
.btn-primary {
background-color: var(--accent);
border-color: var(--accent);
padding: 0.8rem;
border-radius: 8px;
font-weight: 600;
width: 100%;
margin-top: 1rem;
}
.btn-primary:hover {
background-color: #0a3655;
border-color: #0a3655;
}
.form-label {
font-weight: 500;
font-size: 0.9rem;
color: var(--text-primary);
}
</style>
</head>
<body>
<div class="login-card">
<div class="d-flex flex-column align-items-center text-center mb-4">
<div class="brand-logo">
<i class="bi bi-hdd-network-fill"></i>
</div>
<h4 class="fw-bold mb-1">Velkommen tilbage</h4>
<p class="text-muted small">Log ind for at få adgang til BMC Hub</p>
</div>
<form>
<div class="mb-3">
<label class="form-label">Email adresse</label>
<input type="email" class="form-control" placeholder="navn@bmcnetworks.dk" value="christian@bmcnetworks.dk">
</div>
<div class="mb-3">
<label class="form-label">Adgangskode</label>
<input type="password" class="form-control" value="password123">
</div>
<div class="d-flex justify-content-between align-items-center mb-4">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="remember">
<label class="form-check-label small text-muted" for="remember">Husk mig</label>
</div>
<a href="#" class="small text-decoration-none" style="color: var(--accent)">Glemt kode?</a>
</div>
<button type="submit" class="btn btn-primary" onclick="window.location.href='index.html'; return false;">Log Ind</button>
</form>
</div>
</body>
</html>