41 lines
1.6 KiB
HTML
41 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}Salon Portal{% endblock %} — Nails Salon POS</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='tenant/css/main.css') }}">
|
|
</head>
|
|
<body>
|
|
{% if current_user.is_authenticated %}
|
|
<nav class="navbar navbar-light bg-white border-bottom shadow-sm">
|
|
<div class="container-fluid">
|
|
<span class="navbar-brand fw-bold">
|
|
{% if g.tenant %}{{ g.tenant.name }}{% else %}Salon POS{% endif %}
|
|
</span>
|
|
{% if g.location %}
|
|
<span class="badge bg-secondary">{{ g.location.name }}</span>
|
|
{% endif %}
|
|
<div class="d-flex align-items-center gap-3">
|
|
<a href="{{ url_for('tenant_auth.logout') }}" class="btn btn-outline-secondary btn-sm">Logout</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
{% endif %}
|
|
<main class="container-fluid py-4">
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% for category, message in messages %}
|
|
<div class="alert alert-{{ category }} alert-dismissible fade show">
|
|
{{ message }}
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
</div>
|
|
{% endfor %}
|
|
{% endwith %}
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|