diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-08-20 22:52:02 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-08-20 22:52:02 +0200 |
commit | 39ab6e57d391fd9e6b6cd7b8e81b4140d8864a37 (patch) | |
tree | 37a993246e7edb8ed9c21f1436f0d39604082aa9 /templates/_invalid_input.html.ep | |
parent | 64e20b50cf3547bf0fa0bbd6823532142bd11763 (diff) |
allow registration to be denied for certain IPs, e.g. known spammers
(yes, there are actually spambots flooding people with unsolicited
registration e-mails)
Diffstat (limited to 'templates/_invalid_input.html.ep')
-rw-r--r-- | templates/_invalid_input.html.ep | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/_invalid_input.html.ep b/templates/_invalid_input.html.ep index 4cebf29..6b0fb65 100644 --- a/templates/_invalid_input.html.ep +++ b/templates/_invalid_input.html.ep @@ -78,6 +78,10 @@ <p>Aus Sicherheitsgründen kann der Account nur nach Passworteingabe gelöscht werden.</p> % } + % elsif ($invalid eq 'denylist') { + <span class="card-title">Registrierung deaktiviert</span> + <p>Für diesen Zugang ist derzeit keine Registrierung möglich.</p> + % } % else { <span class="card-title">Fehler</span> <p><%= $invalid %></p> |