104 lines
3.3 KiB
HTML
104 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{% block title %}{{ COMPANY_NAME }}{% endblock %}</title>
|
|
|
|
<!-- Main CSS -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ url_for('static', filename='css/style.css') }}"
|
|
/>
|
|
|
|
<!-- Font Awesome -->
|
|
<link
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<!-- Theme override — loaded before page-specific CSS so per-page sheets
|
|
(e.g. auth.css) take cascade precedence unless theme uses !important -->
|
|
{% if THEME_NAME %}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/theme-' + THEME_NAME + '.css') }}" />
|
|
{% endif %}
|
|
|
|
<!-- Page-specific CSS -->
|
|
{% block extra_head %}{% endblock %}
|
|
|
|
<!-- Favicon -->
|
|
<link
|
|
rel="icon"
|
|
type="image/x-icon"
|
|
href="{{ url_for('static', filename='images/favicon.ico') }}"
|
|
/>
|
|
</head>
|
|
<body class="login-layout">
|
|
<!-- Non-authenticated Layout (Login, Register, etc.) -->
|
|
<main class="main-content">
|
|
<!-- Flash Messages -->
|
|
{% with messages = get_flashed_messages(with_categories=true) %} {% if
|
|
messages %}
|
|
<div class="flash-messages">
|
|
{% for category, message in messages %}
|
|
<div class="alert alert-{{ category }}">
|
|
<i
|
|
class="fas {% if category == 'success' %}fa-check-circle{% elif category == 'error' %}fa-exclamation-circle{% elif category == 'info' %}fa-info-circle{% else %}fa-exclamation-triangle{% endif %}"
|
|
></i>
|
|
{{ message }}
|
|
<button
|
|
class="alert-close"
|
|
onclick="this.parentElement.style.display='none'"
|
|
>
|
|
<i class="fas fa-times"></i>
|
|
</button>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %} {% endwith %}
|
|
|
|
<!-- Page Content -->
|
|
<div class="container">{% block content %}{% endblock %}</div>
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="footer-content">
|
|
<p>© 2025 QR Code Management System. All rights reserved.</p>
|
|
<div class="footer-links">
|
|
<a href="#" class="footer-link">Privacy Policy</a>
|
|
<a href="#" class="footer-link">Terms of Service</a>
|
|
<a href="#" class="footer-link">Support</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Main JavaScript -->
|
|
<script src="{{ url_for('static', filename='js/script.js') }}"></script>
|
|
|
|
<!-- Page-specific JavaScript -->
|
|
{% block extra_scripts %}{% endblock %}
|
|
|
|
<!-- Global JavaScript Variables -->
|
|
<script>
|
|
// Pass Flask session data to JavaScript
|
|
window.qrConfig = {
|
|
currentUserId: {{ session.user_id|default('null') }},
|
|
currentUserRole: '{{ session.role|default('') }}',
|
|
currentUserName: '{{ session.full_name|default('') }}',
|
|
csrfToken: '{{ csrf_token() if csrf_token else '' }}'
|
|
};
|
|
</script>
|
|
{% if turnstile_enabled %}
|
|
<!-- Cloudflare Turnstile -->
|
|
<script
|
|
src="https://challenges.cloudflare.com/turnstile/v0/api.js"
|
|
async
|
|
defer
|
|
></script>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|