mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-31 17:31:26 +00:00
16 lines
No EOL
921 B
PHP
16 lines
No EOL
921 B
PHP
<form action="/list-subscribe" method="post" novalidate>
|
|
<?php if ($error): ?>
|
|
<div class="notice notice-error spacer1"><?php echo $error ?></div>
|
|
<?php elseif ($success): ?>
|
|
<div class="notice notice-success spacer1"><?php echo $success ?></div>
|
|
<?php endif ?>
|
|
<div class="mail-submit">
|
|
<input type="hidden" name="returnUrl" value="<?php echo $returnUrl ?>"/>
|
|
<input type="hidden" name="listId" value="<?php echo $listId ?>"/>
|
|
<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($mergeFields)): ?>
|
|
<input type="hidden" name="mergeFields" value="<?php echo htmlentities(serialize($mergeFields)) ?>" />
|
|
<?php endif ?>
|
|
</div>
|
|
</form>
|