summaryrefslogtreecommitdiff
path: root/src/main/resources/templates/NewsletterResource/index.html
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-11-03 06:16:17 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-11-03 06:49:44 +0100
commitff358945f2b210f7f374d3e3e7e36170ee16aed5 (patch)
tree5f7300b2e3cc9686847b3495ae2b48c579eeb9a2 /src/main/resources/templates/NewsletterResource/index.html
parentba3e58c04e918723233dcc66996399eeeff24007 (diff)
KB68 Newsletter registration and deregistration.
Change-Id: Ic79fe64f03ce887879bffc7623e59cb697065ee6
Diffstat (limited to 'src/main/resources/templates/NewsletterResource/index.html')
-rw-r--r--src/main/resources/templates/NewsletterResource/index.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/main/resources/templates/NewsletterResource/index.html b/src/main/resources/templates/NewsletterResource/index.html
new file mode 100644
index 0000000..84098bd
--- /dev/null
+++ b/src/main/resources/templates/NewsletterResource/index.html
@@ -0,0 +1,32 @@
+{#include base.html}
+
+{#title}Newsletter &#8212; Benki{/title}
+{#siteSection}Newsletter{/siteSection}
+{#wikiClass}this-page{/wikiClass}
+
+{#nav}{#navbar siteSection="Newsletter" /}
+
+{#head}{/head}
+
+{#body}
+<article id="newsletter-registration">
+ <header>
+ <h1>Newsletter</h1>
+ </header>
+
+ <section>
+ <p>To get a weekly digest of all posted articles and bookmarks into your email inbox,
+ enter your email address and submit the form below.</p>
+
+ <p>Your registration is subject to the <a href="/privacy">privacy policy</a>.</p>
+
+ <form class="pure-form pure-form-aligned" action="/newsletter/register" method="post">
+ <label for="email-input">E-mail address: </label>
+ <input type="email" name="email" id="email-input" placeholder="E-mail address" required/>
+ <input class="pure-button pure-button-primary" type="submit" value="Subscribe"/>
+ </form>
+ </section>
+</article>
+{/body}
+
+{/include}