318 lines
10 KiB
HTML
318 lines
10 KiB
HTML
{% load i18n %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>{% trans "Login - PX360" %}</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 rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css">
|
|
|
|
<style>
|
|
:root {
|
|
--primary: #0086d2;
|
|
--primary-dark: #005d93;
|
|
--bg-gradient-start: #667eea;
|
|
--bg-gradient-end: #764ba2;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.login-container {
|
|
width: 100%;
|
|
max-width: 420px;
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.login-card {
|
|
background: white;
|
|
border-radius: 12px;
|
|
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.login-header {
|
|
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
|
|
color: white;
|
|
padding: 2rem 1.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.login-header h3 {
|
|
margin-bottom: 0.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.login-header p {
|
|
margin-bottom: 0;
|
|
opacity: 0.9;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.login-body {
|
|
padding: 2rem 1.5rem;
|
|
}
|
|
|
|
.form-control {
|
|
border: 1px solid #dee2e6;
|
|
border-radius: 8px;
|
|
padding: 0.75rem 1rem;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.form-control:focus {
|
|
border-color: var(--primary);
|
|
box-shadow: 0 0 0 0.2rem rgba(0, 134, 210, 0.15);
|
|
}
|
|
|
|
.btn-login {
|
|
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
|
|
border: none;
|
|
color: white;
|
|
font-weight: 600;
|
|
padding: 0.75rem;
|
|
border-radius: 8px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-login:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0, 134, 210, 0.3);
|
|
color: white;
|
|
}
|
|
|
|
.btn-login:focus {
|
|
box-shadow: 0 0 0 0.2rem rgba(0, 134, 210, 0.15);
|
|
}
|
|
|
|
.input-group-text {
|
|
background: #f8f9fa;
|
|
border: 1px solid #dee2e6;
|
|
border-radius: 8px 0 0 8px;
|
|
}
|
|
|
|
.input-group .form-control {
|
|
border-radius: 0 8px 8px 0;
|
|
border-left: none;
|
|
}
|
|
|
|
.input-group .form-control:focus {
|
|
border-left: none;
|
|
}
|
|
|
|
.password-toggle {
|
|
cursor: pointer;
|
|
border: none;
|
|
background: transparent;
|
|
padding: 0.75rem 1rem;
|
|
}
|
|
|
|
.password-toggle:hover {
|
|
background: #e9ecef;
|
|
}
|
|
|
|
.password-toggle:focus {
|
|
outline: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.input-group-append {
|
|
border-radius: 0 8px 8px 0;
|
|
border-left: none;
|
|
background: #f8f9fa;
|
|
border: 1px solid #dee2e6;
|
|
}
|
|
|
|
.input-group-append:focus-within {
|
|
border-color: var(--primary);
|
|
background: #f8f9fa;
|
|
}
|
|
|
|
.form-check-input:checked {
|
|
background-color: var(--primary);
|
|
border-color: var(--primary);
|
|
}
|
|
|
|
.login-footer {
|
|
padding: 1rem 1.5rem;
|
|
background: #f8f9fa;
|
|
text-align: center;
|
|
font-size: 0.85rem;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.login-footer a {
|
|
color: var(--primary);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.login-footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.alert {
|
|
border-radius: 8px;
|
|
border: none;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 576px) {
|
|
.login-container {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.login-header {
|
|
padding: 1.5rem 1rem;
|
|
}
|
|
|
|
.login-body {
|
|
padding: 1.5rem 1rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<div class="login-card">
|
|
<!-- Header -->
|
|
<div class="login-header">
|
|
<div class="mb-3">
|
|
<i class="bi bi-hospital" style="font-size: 2.5rem;"></i>
|
|
</div>
|
|
<h3>{% trans "Welcome to PX360" %}</h3>
|
|
<p>{% trans "Patient Experience Management System" %}</p>
|
|
</div>
|
|
|
|
<!-- Body -->
|
|
<div class="login-body">
|
|
<!-- Messages -->
|
|
{% 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"></button>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<!-- Login Form -->
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
|
|
<!-- Email -->
|
|
<div class="mb-3">
|
|
<label for="email" class="form-label fw-semibold">
|
|
<i class="bi bi-envelope me-1"></i> {% trans "Email Address" %}
|
|
</label>
|
|
<div class="input-group">
|
|
<span class="input-group-text">
|
|
<i class="bi bi-at"></i>
|
|
</span>
|
|
<input type="email"
|
|
class="form-control"
|
|
id="email"
|
|
name="email"
|
|
placeholder="{% trans 'Enter your email' %}"
|
|
required
|
|
autofocus>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Password -->
|
|
<div class="mb-3">
|
|
<label for="password" class="form-label fw-semibold">
|
|
<i class="bi bi-lock me-1"></i> {% trans "Password" %}
|
|
</label>
|
|
<div class="input-group">
|
|
<span class="input-group-text">
|
|
<i class="bi bi-key"></i>
|
|
</span>
|
|
<input type="password"
|
|
class="form-control"
|
|
id="password"
|
|
name="password"
|
|
placeholder="{% trans 'Enter your password' %}"
|
|
required>
|
|
<button type="button"
|
|
class="password-toggle"
|
|
id="togglePassword"
|
|
aria-label="Toggle password visibility">
|
|
<i class="bi bi-eye" id="toggleIcon"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Forgot Password Link -->
|
|
<div class="mb-4 text-end">
|
|
<a href="{% url 'accounts:password_reset' %}" class="text-decoration-none small">
|
|
{% trans "Forgot password?" %}
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Submit Button -->
|
|
<button type="submit" class="btn btn-login w-100">
|
|
<i class="bi bi-box-arrow-in-right me-2"></i> {% trans "Sign In" %}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<div class="login-footer">
|
|
<p class="mb-0">
|
|
{% trans "Secure login powered by" %} <strong>PX360</strong>
|
|
</p>
|
|
<p class="mb-0">
|
|
© {% now "Y" %} Al Hammadi Hospital
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bootstrap 5 JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- Password Visibility Toggle -->
|
|
<script>
|
|
document.getElementById('togglePassword').addEventListener('click', function() {
|
|
const passwordInput = document.getElementById('password');
|
|
const toggleIcon = document.getElementById('toggleIcon');
|
|
|
|
// Toggle password visibility
|
|
if (passwordInput.type === 'password') {
|
|
passwordInput.type = 'text';
|
|
toggleIcon.classList.remove('bi-eye');
|
|
toggleIcon.classList.add('bi-eye-slash');
|
|
} else {
|
|
passwordInput.type = 'password';
|
|
toggleIcon.classList.remove('bi-eye-slash');
|
|
toggleIcon.classList.add('bi-eye');
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<!-- Auto-dismiss alerts after 5 seconds -->
|
|
<script>
|
|
setTimeout(function() {
|
|
const alerts = document.querySelectorAll('.alert');
|
|
alerts.forEach(alert => {
|
|
const bsAlert = new bootstrap.Alert(alert);
|
|
bsAlert.close();
|
|
});
|
|
}, 5000);
|
|
</script>
|
|
</body>
|
|
</html>
|