7 lines
517 B
PHP
7 lines
517 B
PHP
<form name="bookmarkletGenerator" action="<?php echo url('/register'); ?>" method="POST">
|
|
<input type="email" name="email" id="email" value="<?php echo $data['email'] ?? ''; ?>" placeholder="email@example.com" />
|
|
<?php echo isset($errors) && array_key_exists('email', $errors) ? implode(' | ', $errors['email']) : ''; ?>
|
|
<input type="checkbox" id="html" value="on" name="html" /><label for="html">Clip web page (experimental)</label>
|
|
<input type="submit" value="Generate!" id="submit"/>
|
|
</form>
|