wip: totp for local users

This commit is contained in:
jnfrati
2026-04-06 11:48:25 +02:00
parent 28fbf96b2a
commit 6d251c7c2a
10 changed files with 735 additions and 114 deletions

View File

@@ -0,0 +1,25 @@
{{ template "header.html" . }}
<div class="theme-panel">
{{ if .LoggedOut }}
<h2 class="theme-heading">Logged Out</h2>
<div>
<div class="dex-subtle-text">You have been successfully logged out.</div>
</div>
{{ else }}
<h2 class="theme-heading">Session Not Found</h2>
<div>
<div class="dex-subtle-text">No active session found.</div>
</div>
{{ end }}
{{ if .BackURL }}
<div class="theme-form-row">
<a href="{{ .BackURL }}" class="dex-subtle-text">&larr; Back to Application</a>
</div>
{{ end }}
</div>
{{ template "footer.html" . }}