servnest/pg-view/ns/ip.php

8 lines
403 B
PHP
Raw Permalink Normal View History

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