caa.php 697 B

1234567891011121314151617
  1. <?php declare(strict_types=1); ?>
  2. <form method="post">
  3. <?php require ROOT_PATH . '/pg-view/ns/form.ns.php'; ?>
  4. <label for="flag"><?= _('Flag') ?></label>
  5. <br>
  6. <input id="flag" min="0" max="127" placeholder="0" name="flag" type="number">
  7. <br>
  8. <label for="tag"><?= _('Tag') ?></label>
  9. <br>
  10. <input id="tag" minlenght="1" maxlength="128" pattern="^[a-z0-9]{1,127}$" placeholder="issue" name="tag" type="text">
  11. <br>
  12. <label for="value"><?= _('Value') ?></label>
  13. <br>
  14. <input id="value" minlenght="3" maxlength="1024" pattern="^[a-zA-Z0-9 .,;*|#~@=:!?%$+\/\()[\]_-]{1,255}$" placeholder="letsencrypt.org" name="value" type="text">
  15. <br>
  16. <input type="submit" value="<?= _('Apply') ?>">
  17. </form>