2023-07-17 19:15:18 +00:00
|
|
|
<?php declare(strict_types=1); ?>
|
2021-02-17 21:48:49 +00:00
|
|
|
<form method="post">
|
2023-04-09 22:50:42 +00:00
|
|
|
<?php require ROOT_PATH . '/pg-view/ns/form.ns.php'; ?>
|
2023-01-21 00:27:52 +00:00
|
|
|
<label for="ip"><?= _('IP address') ?></label><br>
|
2022-10-01 13:58:56 +00:00
|
|
|
<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>
|
2023-01-21 00:27:52 +00:00
|
|
|
<input type="submit" value="<?= _('Apply') ?>">
|
2021-02-17 21:48:49 +00:00
|
|
|
</form>
|