05/06/2026 Initial commit

This commit is contained in:
2026-05-06 14:19:07 -04:00
parent 9da1dffd9a
commit dde18a2cd2
116 changed files with 4276 additions and 7 deletions
+40
View File
@@ -0,0 +1,40 @@
<!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>