Initial commit - FastAPI guest portal with Authentik OIDC, UniFi integration, and branding assets

This commit is contained in:
Roger Joys
2026-03-15 14:46:47 -07:00
commit 78aac8f6ba
16 changed files with 661 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{% extends "base.html" %}
{% block content %}
<h1>You're connected!</h1>
<p>Welcome to {{ site.name }} Guest WiFi.</p>
<p>Your device has been authorized for <strong>{{ duration_hours }} hours</strong>.</p>
{% if original_url %}
<a class="btn" href="{{ original_url }}">Continue Browsing</a>
{% endif %}
{% endblock %}