6 lines
357 B
PHP
6 lines
357 B
PHP
<form method="post">
|
|
<label for="new-username"><?= _('New username') ?></label><br>
|
|
<input required="" autocomplete="username" minlength="1" maxlength="1024" pattern="<?= USERNAME_REGEX ?>" id="new-username" name="new-username" type="text" placeholder="<?= PLACEHOLDER_USERNAME ?>"><br>
|
|
|
|
<input type="submit" value="<?= _('Update username') ?>">
|
|
</form>
|