ip.php 403 B

1234567
  1. <?php declare(strict_types=1); ?>
  2. <form method="post">
  3. <?php require ROOT_PATH . '/pg-view/ns/form.ns.php'; ?>
  4. <label for="ip"><?= _('IP address') ?></label><br>
  5. <input required="" pattern="^[a-f0-9:.]+$" id="ip" name="ip" minlength="2" maxlength="39" size="40" type="text" placeholder="<?= PLACEHOLDER_IPV6 ?> ou <?= PLACEHOLDER_IPV4 ?>"><br>
  6. <input type="submit" value="<?= _('Apply') ?>">
  7. </form>