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-01-21 00:27:52 +00:00
|
|
|
<label for="current-password"><?= _('Current password') ?></label><br>
|
2022-11-30 22:12:42 +00:00
|
|
|
<input required="" autocomplete="current-password" minlength="8" maxlength="1024" pattern="<?= PASSWORD_REGEX ?>" id="current-password" name="current-password" type="password" placeholder="<?= PLACEHOLDER_PASSWORD ?>"><br>
|
2021-02-12 14:32:48 +00:00
|
|
|
|
2023-01-21 00:27:52 +00:00
|
|
|
<label for="new-password"><?= _('New password') ?></label><br>
|
2022-11-30 22:12:42 +00:00
|
|
|
<input required="" autocomplete="new-password" minlength="8" maxlength="1024" pattern="<?= PASSWORD_REGEX ?>" id="new-password" name="new-password" type="password" placeholder="<?= PLACEHOLDER_PASSWORD ?>"><br>
|
2021-02-12 14:32:48 +00:00
|
|
|
|
2023-01-21 00:27:52 +00:00
|
|
|
<input type="submit" value="<?= _('Update password') ?>">
|
2021-02-17 21:48:49 +00:00
|
|
|
</form>
|