summaryrefslogtreecommitdiff
path: root/src/main/resources/templates/NewsletterResource/index.html
blob: 84098bd07ec9d7b68faf226c387f4e05e0642e51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{#include base.html}

{#title}Newsletter — 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}