castopod/app/Views/admin/my_account/change_password.php
Yassine Doghri c63a077618 feat(users): add myth-auth to handle users crud + add admin gateway only accessible by login
- overwrite myth/auth config with castopod app needs
- create custom views for users authentication
- add admin area bootstrapped by admin controller
- shift podcast and episodes crud to admin area
- reorganize view layouts
- update docs for database migration
- add myth-auth to DEPENDENCIES.md

closes #11
2020-10-15 14:41:03 +00:00

32 lines
1.0 KiB
PHP

<?= $this->extend('admin/_layout') ?>
<?= $this->section('content') ?>
<h1 class="mb-6 text-xl"><?= lang('MyAccount.changePassword') ?></h1>
<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()
?>