diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2021-09-12 08:15:59 +0200 |
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2021-09-12 08:15:59 +0200 |
| commit | 79b55c430d85e39da029c5c2006bf89c0683b13b (patch) | |
| tree | 70f7927e1bda4d4b31e40270546485557f69c687 /templates | |
| parent | 9d4f3f8ce124023f704d5ca1a9e7a87029b43073 (diff) | |
allow registration to be disabled via config
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/landingpage.html.ep | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/landingpage.html.ep b/templates/landingpage.html.ep index b7ba22a..fa9bf8a 100644 --- a/templates/landingpage.html.ep +++ b/templates/landingpage.html.ep @@ -112,7 +112,9 @@ <div class="col s1 m1 l3"> </div> <div class="col s10 m10 l6 center-align"> - <a href="/register" class="waves-effect waves-light btn"><i class="material-icons left" aria-hidden="true">add</i>Registrieren</a> + % if (not app->config->{registration}{disabled}) { + <a href="/register" class="waves-effect waves-light btn"><i class="material-icons left" aria-hidden="true">add</i>Registrieren</a> + % } <a href="/login" class="waves-effect waves-light btn"><i class="material-icons left" aria-hidden="true">account_circle</i>Anmelden</a> </div> <div class="col s1 m1 l3"> |
