143 lines
4.5 KiB
HTML
143 lines
4.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login - Manufacturing App</title>
|
|
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Bootstrap Icons -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css" rel="stylesheet">
|
|
|
|
<style>
|
|
body {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.login-container {
|
|
background: white;
|
|
border-radius: 1rem;
|
|
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
|
|
overflow: hidden;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.login-header {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.login-header h1 {
|
|
margin: 0;
|
|
font-size: 1.75rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.login-header p {
|
|
margin: 0.5rem 0 0 0;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.login-body {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.form-floating {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.btn-login {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
border: none;
|
|
padding: 0.75rem;
|
|
font-weight: 600;
|
|
width: 100%;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.btn-login:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.alert {
|
|
border-radius: 0.5rem;
|
|
border: none;
|
|
}
|
|
|
|
.form-control:focus {
|
|
border-color: #667eea;
|
|
box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<div class="login-header">
|
|
<h1>
|
|
<i class="bi bi-gear-fill me-2"></i>
|
|
Manufacturing
|
|
</h1>
|
|
<p>Sign in to your account</p>
|
|
</div>
|
|
|
|
<div class="login-body">
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<div class="alert alert-{{ message.tags }} alert-dismissible fade show" role="alert">
|
|
{{ message }}
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if form.errors %}
|
|
<div class="alert alert-danger">
|
|
<i class="bi bi-exclamation-triangle me-2"></i>
|
|
<strong>Login Error:</strong> Please check your username and password.
|
|
</div>
|
|
{% endif %}
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
|
|
<div class="form-floating">
|
|
<input type="text" class="form-control" id="id_username" name="username"
|
|
placeholder="Username" required autofocus>
|
|
<label for="id_username">Username</label>
|
|
</div>
|
|
|
|
<div class="form-floating">
|
|
<input type="password" class="form-control" id="id_password" name="password"
|
|
placeholder="Password" required>
|
|
<label for="id_password">Password</label>
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary btn-login">
|
|
<i class="bi bi-box-arrow-in-right me-2"></i>
|
|
Sign In
|
|
</button>
|
|
</form>
|
|
|
|
<div class="text-center mt-3">
|
|
<small class="text-muted">
|
|
<i class="bi bi-shield-lock me-1"></i>
|
|
Secure login system
|
|
</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bootstrap 5 JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|