16 lines
663 B
PHP
16 lines
663 B
PHP
<form method="post">
|
|
<?php require ROOT_PATH . '/pg-view/ns/form.ns.php'; ?>
|
|
<label for="flag"><?= _('Flag') ?></label>
|
|
<br>
|
|
<input id="flag" min="0" max="127" placeholder="0" name="flag" type="number">
|
|
<br>
|
|
<label for="tag"><?= _('Tag') ?></label>
|
|
<br>
|
|
<input id="tag" minlenght="1" maxlength="128" pattern="^[a-z0-9]{1,127}$" placeholder="issue" name="tag" type="text">
|
|
<br>
|
|
<label for="value"><?= _('Value') ?></label>
|
|
<br>
|
|
<input id="value" minlenght="3" maxlength="1024" pattern="^[a-zA-Z0-9 .,;*|#~@=:!?%$+\/\()[\]_-]{1,255}$" placeholder="letsencrypt.org" name="value" type="text">
|
|
<br>
|
|
<input type="submit" value="<?= _('Apply') ?>">
|
|
</form>
|