From 1beec55bace00d59ef55c17137334f893b1618a9 Mon Sep 17 00:00:00 2001 From: mst Date: Tue, 26 Nov 2024 15:25:33 +0300 Subject: [PATCH] add anti-spam page template --- templates/admin/categories/antispam.html | 121 +++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 templates/admin/categories/antispam.html diff --git a/templates/admin/categories/antispam.html b/templates/admin/categories/antispam.html new file mode 100644 index 0000000..9e0af43 --- /dev/null +++ b/templates/admin/categories/antispam.html @@ -0,0 +1,121 @@ +{% extends 'admin/base.html' %} +{% block _title %}Anti-spam{% endblock %} +{% set antispam_link = 'active' %} +{% block _content %} +
+

Anti-spam

+
+ + + +
+ {% if not cfg.antispam.enabled %} + + {% endif %} +
+ + +

Anti-spam type to use

+
+
+

reCAPTCHA options

+
+ + +

reCAPTCHA site key

+
+
+ + +

reCAPTCHA secret key

+
+
+
+

Turnstile options

+
+ + +

Turnstile site key

+
+
+ + +

Turnstile secret key

+
+
+
+

Friendly Captcha options

+
+ + +

Friendly Captcha site key

+
+
+ + +

Friendly Captcha API key

+
+
+
+ +
+
+{% endblock %} +{% block _scripts %} + + +{% endblock %}