mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
12 lines
No EOL
518 B
PHP
12 lines
No EOL
518 B
PHP
<?php $error = $error ?? null ?>
|
|
<?php $tag = $tag ?? null ?>
|
|
<?php $largeInput = $largeInput ?? false ?>
|
|
<form id="settings_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 name="receive" type="radio" value="true" checked><label>Receive Email</label><br>
|
|
<input name="receive" type="radio" value="false"><label>Receive No Email</label>
|
|
</div>
|
|
</form>
|