2020-07-10 12:20:25 +00:00
|
|
|
<?= $this->extend('admin/_layout') ?>
|
|
|
|
|
2020-07-16 10:08:23 +00:00
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= lang('MyAccount.changePassword') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
2020-07-10 12:20:25 +00:00
|
|
|
|
2020-07-16 10:08:23 +00:00
|
|
|
<?= $this->section('content') ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
|
|
|
|
<form action="<?= route_to(
|
|
|
|
'myAccount_changePassword'
|
|
|
|
) ?>" method="post" class="flex flex-col max-w-lg">
|
|
|
|
<?= csrf_field() ?>
|
|
|
|
|
|
|
|
<input type="hidden" name="email" value="<?= user()->email ?>">
|
|
|
|
|
|
|
|
<label for="password"><?= lang('User.form.password') ?></label>
|
|
|
|
<input type="password" name="password" class="mb-4 form-input" id="password" autocomplete="off">
|
|
|
|
|
|
|
|
<label for="new_password"><?= lang('User.form.new_password') ?></label>
|
|
|
|
<input type="password" name="new_password" class="mb-4 form-input" id="new_password" autocomplete="off">
|
|
|
|
|
|
|
|
<label for="pass_confirm"><?= lang(
|
|
|
|
'User.form.repeat_new_password'
|
|
|
|
) ?></label>
|
|
|
|
<input type="password" name="new_pass_confirm" class="mb-6 form-input" id="new_pass_confirm" autocomplete="off">
|
|
|
|
|
|
|
|
<button type="submit" class="px-4 py-2 ml-auto border">
|
|
|
|
<?= lang('User.form.submit_edit') ?>
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<?= $this->endSection()
|
|
|
|
?>
|