From: Rico Hoppe Date: Thu, 7 Mar 2024 12:01:38 +0000 (+0000) Subject: lists: added pages to un- subscribe from mailing lists X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6ef4c4f21f5c5378df06e6806a53d35e883505b;p=ipfire.org.git lists: added pages to un- subscribe from mailing lists --- diff --git a/src/templates/lists/subscribe.html b/src/templates/lists/subscribe.html new file mode 100644 index 00000000..28e31e1e --- /dev/null +++ b/src/templates/lists/subscribe.html @@ -0,0 +1,27 @@ +{% extends "../base.html" %} + +{% block title %}{{ _("Subscribe To %s") }} % {{ list }}{% end block %} + +{% block container %} +
+
+
+
{{ _("Subscribe To %s") }} % {{ list }}
+ +
+

+ {{ _("Subscribe and you will receive emails concerning %s!") }} % {{ list }} +

+ + {% if list.description %} +

+ {{ list.description }} +

+ {% end %} +
+ + +
+
+
+{% end block %} diff --git a/src/templates/lists/unsubscribe.html b/src/templates/lists/unsubscribe.html new file mode 100644 index 00000000..b2d9a4d6 --- /dev/null +++ b/src/templates/lists/unsubscribe.html @@ -0,0 +1,28 @@ +{% extends "../base.html" %} + +{% block title %}{{ _("Unsubscribe from %s") }} % {{ list }}{% end block %} + +{% block container %} +
+
+
+
{{ _("We'd Be Sorry To See You Go") }}
+ +
+

+ {{ _("If you unsubscribe, you will no longer receive important emails concerning %s") }} % {{ list }} + {{ _("There are plenty of benefits to remain subscribed:") }} +

+ + {% if list.description %} +

+ {{ list.description }} +

+ {% end %} +
+ + +
+
+
+{% end block %}