mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-13 17:55:47 +00:00

- add AuthSeeder to bootstrap authorization data and remove UserSeeder - create a superadmin group having all authorizations - refactor routes and controller methods to separate get and post requests - refactor admin views with a title section in layout - add contributors section to podcasts to manage contributions (add, edit roles and remove) closes #3, #18
38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<?= $this->extend('admin/_layout') ?>
|
|
|
|
<?= $this->section('title') ?>
|
|
<?= lang('User.create') ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<form action="<?= route_to(
|
|
'user_create'
|
|
) ?>" method="post" class="flex flex-col max-w-lg">
|
|
<?= csrf_field() ?>
|
|
|
|
<label for="email"><?= lang('User.form.email') ?></label>
|
|
<input type="email" class="mb-4 form-input" name="email" id="email" value="<?= old(
|
|
'email'
|
|
) ?>">
|
|
|
|
<label for="username"><?= lang('User.form.username') ?></label>
|
|
<input type="text" class="mb-4 form-input" name="username" id="username" value="<?= old(
|
|
'username'
|
|
) ?>">
|
|
|
|
<label for="password"><?= lang('User.form.password') ?></label>
|
|
<input type="password" name="password" class="mb-4 form-input" id="password" autocomplete="off">
|
|
|
|
<label for="pass_confirm"><?= lang('User.form.repeat_password') ?></label>
|
|
<input type="password" name="pass_confirm" class="mb-6 form-input" id="pass_confirm" autocomplete="off">
|
|
|
|
<button type="submit" class="px-4 py-2 ml-auto border">
|
|
<?= lang('User.form.submit_create') ?>
|
|
</button>
|
|
</form>
|
|
|
|
<?= $this->endSection()
|
|
?>
|