mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
14 lines
No EOL
620 B
PHP
14 lines
No EOL
620 B
PHP
<?php $error = $error ?? null ?>
|
|
<form action="/list/subscribe" method="POST" novalidate>
|
|
|
|
<?php if ($error): ?>
|
|
<div class="notice notice-error spacer1"><?php echo $error ?></div>
|
|
<?php endif ?>
|
|
|
|
<div class="mail-submit">
|
|
<input type="hidden" name="returnUrl" value="<?php echo $returnUrl ?>"/>
|
|
<input type="email" value="" name="email" class="required email standard" placeholder="{{email.placeholder}}">
|
|
<input type="submit" value="<?php echo $submitLabel ?? __('email.subs') ?>" name="subscribe" class="<?php echo $btnClass ?>">
|
|
<div class="meta">{{email.disclaimer}}</div>
|
|
</div>
|
|
</form>
|