summaryrefslogtreecommitdiffstats
path: root/authentication/templates/base.html
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <tom@vanderlee.io>2026-07-30 16:03:32 +0200
committerGravatar Tom van der Lee <tom@vanderlee.io>2026-07-30 16:03:32 +0200
commit2d22158dd95f76399f5716d556be60c77da04a46 (patch)
tree15fca3adae0f44674fe06bc141879804659c3664 /authentication/templates/base.html
parentaa56bc05285981d57c5adb2cee3c4e898fb2a702 (diff)
downloadserver-2d22158dd95f76399f5716d556be60c77da04a46.tar.gz
server-2d22158dd95f76399f5716d556be60c77da04a46.tar.bz2
server-2d22158dd95f76399f5716d556be60c77da04a46.zip
Admin uiv3
Diffstat (limited to 'authentication/templates/base.html')
-rw-r--r--authentication/templates/base.html18
1 files changed, 17 insertions, 1 deletions
diff --git a/authentication/templates/base.html b/authentication/templates/base.html
index 9874313..ae6cb64 100644
--- a/authentication/templates/base.html
+++ b/authentication/templates/base.html
@@ -1,4 +1,20 @@
1{% extends 'global.html' %} 1{% extends 'global.html' %}
2{% import 'macros.html' as ui %}
2{% block template %} 3{% block template %}
3 {% block content %}{% endblock %} 4<div class="auth-page">
5 <div class="auth-shell">
6 <div class="auth-hero">
7 <div class="auth-hero__brand">{{ ui.connector_icon(20) }} ttun</div>
8 <div class="auth-hero__diagram">
9 <span class="mono">local:3000</span>
10 <span class="connector">{{ ui.connector_icon(20) }}</span>
11 <span class="mono">your-app.ttun.dev</span>
12 </div>
13 <p class="auth-hero__tagline">Self-hosted tunnel proxy. Expose a local port through a public URL you control.</p>
14 </div>
15 <div class="auth-form">
16 {% block content %}{% endblock %}
17 </div>
18 </div>
19</div>
4{% endblock %} 20{% endblock %}