feat(themes,templates,signup-gate): add signup gate, remove custom theme switcher from links footer

This commit is contained in:
hh
2026-07-22 22:18:26 +02:00
parent 9d6ff3ae8c
commit 94e452a213
23 changed files with 927 additions and 43 deletions
+18
View File
@@ -0,0 +1,18 @@
{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content user activate">
<div class="ui middle very relaxed page grid">
<div class="column">
<h2 class="ui top attached header">
{{ctx.Locale.Tr "auth.active_your_account"}}
</h2>
<div class="ui attached segment">
{{template "base/alert" .}}
<p>{{.ActivationPromptMessage}}</p>
<div class="divider"></div>
<p>No email needed - activate the account yourself, it takes one click.</p>
<a class="ui primary button" href="{{AppSubUrl}}/activate">Activate my account</a>
</div>
</div>
</div>
</div>
{{template "base/footer" .}}