From 7525806a498c61da181e492efb6cf5b771ba6608 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 06:53:58 +0000 Subject: [PATCH 1/3] Bump gunicorn from 26.0.0 to 26.1.0 Bumps [gunicorn](https://github.com/benoitc/gunicorn) from 26.0.0 to 26.1.0. - [Release notes](https://github.com/benoitc/gunicorn/releases) - [Commits](https://github.com/benoitc/gunicorn/compare/26.0.0...26.1.0) --- updated-dependencies: - dependency-name: gunicorn dependency-version: 26.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f7d7ffc..9575991 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ Flask==3.1.3 Flask-SQLAlchemy==3.1.1 Flask-Login==0.6.3 -gunicorn==26.0.0 +gunicorn==26.1.0 Werkzeug==3.1.8 pyotp==2.10.0 qrcode==8.2 From c9b5f8b2ee1c29aac27d5ed874f7af087c6980d7 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 25 Aug 2026 14:08:36 +0000 Subject: [PATCH 2/3] Modernize GUI styling without changing markup or JS contracts Refresh the visual design system (colors, spacing, shadows, radii, transitions) in style.css: sticky gradient nav, polished cards/buttons/ badges/tables/modal with subtle motion, refined light and dark palettes, accessible focus states, and a sticky footer via a new
wrapper in base.html. All existing class names, element IDs, and JS-driven DOM structure are preserved untouched, so no functionality changes. --- app/templates/base.html | 2 + static/style.css | 583 +++++++++++++++++++++++++--------------- 2 files changed, 366 insertions(+), 219 deletions(-) diff --git a/app/templates/base.html b/app/templates/base.html index 1138b94..11f0b86 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -31,6 +31,7 @@ +
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} @@ -40,6 +41,7 @@ {% endwith %} {% block content %}{% endblock %} +