2018-08-29 01:57:18 +02:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-11-30 21:46:22 +01:00
|
|
|
// I M P O R T
|
2018-08-29 01:57:18 +02:00
|
|
|
|
|
|
|
import html from "choo/html";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// E X P O R T
|
|
|
|
|
2018-10-03 22:27:13 +02:00
|
|
|
export default () => html`
|
|
|
|
<div id="emailSubscribe" class="newsletter-cta">
|
|
|
|
<h3 class="newsletter-cta__title">Don't miss a bit - Subscribe for LBRY technical updates</h3>
|
2018-08-29 01:57:18 +02:00
|
|
|
|
2018-10-03 22:27:13 +02:00
|
|
|
<div>
|
|
|
|
<input class="newsletter-cta__input" id="emailAddress" placeholder="you@domain.tld" type="text"/>
|
|
|
|
<button class="newsletter-cta__submit" data-action="subscribe to newsletter" title="Subscribe to our technical newsletter" type="button">Subscribe</a>
|
2018-08-29 01:57:18 +02:00
|
|
|
</div>
|
2018-10-03 22:27:13 +02:00
|
|
|
|
|
|
|
<p class="newsletter-cta__message" id="emailMessage"></p>
|
|
|
|
</div>
|
|
|
|
`;
|