9 lines
384 B
PHP
9 lines
384 B
PHP
<?php declare(strict_types=1); ?>
|
|
<form method="post">
|
|
<?php require ROOT_PATH . '/pg-view/ns/form.ns.php'; ?>
|
|
<label for="txt"><?= _('Text') ?></label>
|
|
<br>
|
|
<input id="txt" minlenght="5" maxlength="8192" pattern="^[a-zA-Z0-9 .@=:!%$+/\()[\]_-]{5,8192}$" placeholder="<?= _('Some text…') ?>" name="txt" type="text">
|
|
<br>
|
|
<input type="submit" value="<?= _('Apply') ?>">
|
|
</form>
|