From 6e5518c103e70b67afe1293dbaf994b2ab5acfe2 Mon Sep 17 00:00:00 2001 From: NguyenND Date: Thu, 7 May 2026 11:52:04 -0400 Subject: [PATCH] 05/06 Phase 2: fixed issues 4th --- templates/tenant/auth/cancelled.html | 10 ++++ templates/tenant/auth/suspended.html | 11 +++++ templates/tenant/checkin/kiosk.html | 67 ++++++++++++++++++++++++++ templates/tenant/dashboard/index.html | 10 ++++ templates/tenant/staff_auth/login.html | 33 +++++++++++++ 5 files changed, 131 insertions(+) create mode 100644 templates/tenant/auth/cancelled.html create mode 100644 templates/tenant/auth/suspended.html create mode 100644 templates/tenant/checkin/kiosk.html create mode 100644 templates/tenant/dashboard/index.html create mode 100644 templates/tenant/staff_auth/login.html diff --git a/templates/tenant/auth/cancelled.html b/templates/tenant/auth/cancelled.html new file mode 100644 index 0000000..603d855 --- /dev/null +++ b/templates/tenant/auth/cancelled.html @@ -0,0 +1,10 @@ +{% extends "tenant/layouts/base.html" %} +{% block title %}Account Cancelled{% endblock %} +{% block content %} +
+
+

Account Cancelled

+

This account has been cancelled. Please contact support if you believe this is an error.

+
+
+{% endblock %} diff --git a/templates/tenant/auth/suspended.html b/templates/tenant/auth/suspended.html new file mode 100644 index 0000000..1252325 --- /dev/null +++ b/templates/tenant/auth/suspended.html @@ -0,0 +1,11 @@ +{% extends "tenant/layouts/base.html" %} +{% block title %}Account Suspended{% endblock %} +{% block content %} +
+
+

Account Suspended

+

Your salon account has been suspended. Please contact support to resolve your billing.

+ Back to Login +
+
+{% endblock %} diff --git a/templates/tenant/checkin/kiosk.html b/templates/tenant/checkin/kiosk.html new file mode 100644 index 0000000..6320ab9 --- /dev/null +++ b/templates/tenant/checkin/kiosk.html @@ -0,0 +1,67 @@ + + + + + + Welcome to {{ tenant.name }} + + + + +
+ {% if confirmed %} +
+
+

You're checked in!

+

A staff member will be right with you.

+

Resetting in 10s…

+
+ + {% else %} +
+

Welcome to {{ tenant.name }}

+ {% if error %} +
{{ error }}
+ {% endif %} +
+
+ + +
+
+ + +
+ {% if services %} +
+ + +
+ {% endif %} + +
+
+ {% endif %} +
+ + + diff --git a/templates/tenant/dashboard/index.html b/templates/tenant/dashboard/index.html new file mode 100644 index 0000000..ddc17d2 --- /dev/null +++ b/templates/tenant/dashboard/index.html @@ -0,0 +1,10 @@ +{% extends "tenant/layouts/base.html" %} +{% block title %}Dashboard{% endblock %} +{% block content %} +

Dashboard + {% if location %}— {{ location.name }}{% endif %} +

+
+ Phase 3 KPI widgets will appear here (daily revenue, appointments, staff on-shift, low-stock alerts). +
+{% endblock %} diff --git a/templates/tenant/staff_auth/login.html b/templates/tenant/staff_auth/login.html new file mode 100644 index 0000000..61792df --- /dev/null +++ b/templates/tenant/staff_auth/login.html @@ -0,0 +1,33 @@ +{% extends "tenant/layouts/base.html" %} +{% block title %}Staff Login{% endblock %} +{% block content %} +
+
+
+
+

Staff Login

+ {% if error %} +
{{ error }}
+ {% endif %} +
+ +
+ + +
+
+ + +
+ +
+ +
+
+
+
+{% endblock %}