mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-29 08:21:28 +00:00
24 lines
654 B
PHP
24 lines
654 B
PHP
<?php Response::setMetaDescription(__('description.join')) ?>
|
|
<?php Response::setMetaTitle(__('title.join')) ?>
|
|
|
|
<main class="ancillary">
|
|
<section class="hero hero--half-height">
|
|
<div class="inner-wrap inner-wrap--center-hero">
|
|
<h1>Join Our List for LBRY Updates</h1>
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<div class="inner-wrap">
|
|
<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>
|
|
</section>
|
|
</main>
|