mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-26 23:13:32 +00:00
25 lines
962 B
PHP
25 lines
962 B
PHP
<?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') ?>
|