mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
34 lines
1.7 KiB
PHP
34 lines
1.7 KiB
PHP
<?php $error = isset($error) ? $error : null ?>
|
|
<form action="/list-subscribe" method="post" novalidate>
|
|
<?php if ($error): ?>
|
|
<div class="notice notice-error spacer1"><?php echo $error ?></div>
|
|
<?php elseif ($success): ?>
|
|
<?php js_start() ?>
|
|
ga('send', 'event', 'Sign Up', 'Join List', '<?php echo $listId ?>');
|
|
twttr.conversion.trackPid('nty1x');
|
|
fbq('track', '<?php echo $fbEvent ?>');
|
|
<?php js_end() ?>
|
|
<div class="notice notice-success spacer1"><?php echo $success ?></div>
|
|
<?php endif ?>
|
|
<?php if ($error || !$success): ?>
|
|
<div class="mail-submit">
|
|
<input type="hidden" name="returnUrl" value="<?php echo $returnUrl ?>"/>
|
|
<input type="hidden" name="listId" value="<?php echo $listId ?>"/>
|
|
<input type="hidden" name="listSig" value="<?php echo $listSig ?>"/>
|
|
<input type="email" value="" name="email" class="required email standard" placeholder="someone@somewhere.com">
|
|
<input type="submit" value="<?php echo isset($submitLabel) ? $submitLabel : 'Subscribe' ?>" name="subscribe" id="mc-embedded-subscribe" class="<?php echo $btnClass ?>">
|
|
<?php if (isset($fbEvent)): ?>
|
|
<input type="hidden" name="fbEvent" value="<?php echo $fbEvent ?>" />
|
|
<?php endif ?>
|
|
<?php if (isset($mergeFields)): ?>
|
|
<input type="hidden" name="mergeFields" value="<?php echo htmlentities(serialize($mergeFields)) ?>" />
|
|
<?php endif ?>
|
|
<?php if (isset($meta) && $meta): ?>
|
|
<div class="meta">
|
|
<?php echo __('You will receive 1-2 messages a month, only from LBRY, Inc. and only about LBRY.') ?>
|
|
<?php echo __('You can easily unsubscribe at any time.') ?>
|
|
</div>
|
|
<?php endif ?>
|
|
</div>
|
|
<?php endif ?>
|
|
</form>
|