srv.php 821 B

1234567891011121314151617181920212223242526272829
  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="weight"><?= _('Weight') ?></label>
  9. <br>
  10. <input id="weight" min="0" max="65535" value="0" placeholder="0" name="weight" type="number">
  11. <br>
  12. <label for="port"><?= _('Port') ?></label>
  13. <br>
  14. <input id="port" min="0" max="65535" placeholder="32768" name="port" type="number">
  15. <br>
  16. <label for="target"><?= _('Target') ?></label>
  17. <br>
  18. <input id="target" minlenght="1" maxlength="128" placeholder="service.<?= PLACEHOLDER_DOMAIN ?>." name="target" type="text">
  19. <br>
  20. <input type="submit" value="<?= _('Apply') ?>">
  21. </form>