mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-20 17:26:40 +00:00
26 lines
574 B
HTML
26 lines
574 B
HTML
|
|
{{ 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">← Back to Application</a>
|
|
</div>
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ template "footer.html" . }}
|