servnest/pg-view/ns/mx.php
2023-07-17 21:15:18 +02:00

13 lines
476 B
PHP

<?php declare(strict_types=1); ?>
<form method="post">
<?php require ROOT_PATH . '/pg-view/ns/form.ns.php'; ?>
<label for="priority"><?= _('Priority') ?></label>
<br>
<input id="priority" min="0" max="65535" value="0" placeholder="0" name="priority" type="number">
<br>
<label for="host"><?= _('Host') ?></label>
<br>
<input id="host" placeholder="mail.<?= PLACEHOLDER_DOMAIN ?>." name="host" type="text">
<br>
<input type="submit" value="<?= _('Apply') ?>">
</form>