mx.php 476 B

12345678910111213
  1. <?php declare(strict_types=1); ?>
  2. <form method="post">
  3. <?php require ROOT_PATH . '/pg-view/ns/form.ns.php'; ?>
  4. <label for="priority"><?= _('Priority') ?></label>
  5. <br>
  6. <input id="priority" min="0" max="65535" value="0" placeholder="0" name="priority" type="number">
  7. <br>
  8. <label for="host"><?= _('Host') ?></label>
  9. <br>
  10. <input id="host" placeholder="mail.<?= PLACEHOLDER_DOMAIN ?>." name="host" type="text">
  11. <br>
  12. <input type="submit" value="<?= _('Apply') ?>">
  13. </form>