News signup page - tagging template for lists (#441)

* Create News signup page - tagging template for lists
This commit is contained in:
Julie Sigwart 2018-03-19 11:41:28 -07:00 committed by Thomas Zarebczan
parent 9e48e25fa9
commit 06b12f07c7

View file

@ -0,0 +1,25 @@
<?php Response::setMetaDescription(__('description.join')) ?>
<?php Response::setMetaTitle(__('title.join')) ?>
<?php echo View::render('nav/_header', ['isDark' => true, 'isAbsolute' => true]) ?>
<main>
<div class="cover cover-dark cover-center cover-full cover--dark-overlay" style="background-color:rgb(74, 175, 152)">
<div class="content content-dark text-center">
<h1 class="cover-title cover-title-tile cover-item--outline">
Join Our List for LBRY Updates!
</h1>
</div>
</div>
<div class="cover cover-light" id="about">
<div class="content content-light content-readable">
<h3>Enter your email below</h3>
<?php echo View::render('mail/_subscribeForm', [
'tag' => 'news',
'submitLabel' => 'Sign me up',
'hideDisclaimer' => true,
'largeInput' => true,
'btnClass' => 'btn-alt btn-large',
]) ?>
</div>
</div>
</main>
<?php echo View::render('nav/_footer') ?>