servnest/pg-view/ns/caa.php

17 lines
610 B
PHP

<form method="post">
<?php require '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-z]{1,128}$" placeholder="issue" name="tag" type="text">
<br>
<label for="value"><?= _('Value') ?></label>
<br>
<input id="value" minlenght="3" maxlength="1024" pattern="^[a-z0-9.-]{3,1024}$" placeholder="letsencrypt.org" name="value" type="text">
<br>
<input type="submit" value="<?= _('Apply') ?>">
</form>