10 lines
696 B
PHP
10 lines
696 B
PHP
<?php declare(strict_types=1); ?>
|
|
<form method="post">
|
|
<label for="current-password"><?= _('Current password') ?></label><br>
|
|
<input required="" autocomplete="current-password" minlength="8" maxlength="1024" pattern="<?= PASSWORD_REGEX ?>" id="current-password" name="current-password" type="password" placeholder="<?= PLACEHOLDER_PASSWORD ?>"><br>
|
|
|
|
<label for="new-password"><?= _('New password') ?></label><br>
|
|
<input required="" autocomplete="new-password" minlength="8" maxlength="1024" pattern="<?= PASSWORD_REGEX ?>" id="new-password" name="new-password" type="password" placeholder="<?= PLACEHOLDER_PASSWORD ?>"><br>
|
|
|
|
<input type="submit" value="<?= _('Update password') ?>">
|
|
</form>
|