2023-07-17 19:15:18 +00:00
|
|
|
<?php declare(strict_types=1); ?>
|
2021-05-16 14:55:39 +00:00
|
|
|
<form method="post">
|
2023-04-09 22:50:42 +00:00
|
|
|
<?php require ROOT_PATH . '/pg-view/ns/form.ns.php'; ?>
|
2021-05-16 14:55:39 +00:00
|
|
|
|
2023-01-21 00:27:52 +00:00
|
|
|
<label for="priority"><?= _('Priority') ?></label>
|
2022-04-18 14:05:00 +00:00
|
|
|
<br>
|
|
|
|
<input id="priority" min="0" max="65535" value="0" placeholder="0" name="priority" type="number">
|
2021-05-16 14:55:39 +00:00
|
|
|
|
2022-04-18 14:05:00 +00:00
|
|
|
<br>
|
2021-05-16 14:55:39 +00:00
|
|
|
|
2023-01-21 00:27:52 +00:00
|
|
|
<label for="weight"><?= _('Weight') ?></label>
|
2022-04-18 14:05:00 +00:00
|
|
|
<br>
|
|
|
|
<input id="weight" min="0" max="65535" value="0" placeholder="0" name="weight" type="number">
|
2021-05-16 14:55:39 +00:00
|
|
|
|
2022-04-18 14:05:00 +00:00
|
|
|
<br>
|
2021-05-16 14:55:39 +00:00
|
|
|
|
2023-01-21 00:27:52 +00:00
|
|
|
<label for="port"><?= _('Port') ?></label>
|
2022-04-18 14:05:00 +00:00
|
|
|
<br>
|
|
|
|
<input id="port" min="0" max="65535" placeholder="32768" name="port" type="number">
|
2021-05-16 14:55:39 +00:00
|
|
|
|
2022-04-18 14:05:00 +00:00
|
|
|
<br>
|
2021-05-16 14:55:39 +00:00
|
|
|
|
2023-01-21 00:27:52 +00:00
|
|
|
<label for="target"><?= _('Target') ?></label>
|
2022-04-18 14:05:00 +00:00
|
|
|
<br>
|
2022-06-10 19:14:47 +00:00
|
|
|
<input id="target" minlenght="1" maxlength="128" placeholder="service.<?= PLACEHOLDER_DOMAIN ?>." name="target" type="text">
|
2021-05-16 14:55:39 +00:00
|
|
|
|
2022-04-18 14:05:00 +00:00
|
|
|
<br>
|
2023-01-21 00:27:52 +00:00
|
|
|
<input type="submit" value="<?= _('Apply') ?>">
|
2021-05-16 14:55:39 +00:00
|
|
|
</form>
|