addressbook/templates/admin/users_edit.html.php

32 lines
1.0 KiB
PHP
Raw Normal View History

2022-10-23 19:16:10 +02:00
<?php include dirname(path: __DIR__) . '/_header.html.php'; ?>
<form method="POST">
2022-10-24 18:37:00 +02:00
<input type="hidden" name="id" value="<?= $editUser->getId() ?>">
2022-10-23 19:16:10 +02:00
<label for="nick">Username</label>
2022-10-24 18:37:00 +02:00
<input type="text" name="nick" id="nick" value="<?= $editUser->getNick() ?>" required>
2022-10-23 19:16:10 +02:00
<br>
<label for="password">Password (leave empty to keep the current one)</label>
<input type="password" name="password" id="password">
<br>
<label for="first">First</label>
2022-10-24 18:37:00 +02:00
<input type="text" name="first" id="first" value="<?= $editUser->getFirst() ?>" required>
2022-10-23 19:16:10 +02:00
<br>
<label for="last">Last</label>
2022-10-24 18:37:00 +02:00
<input type="text" name="last" id="last" value="<?= $editUser->getLast() ?>" required>
2022-10-23 19:16:10 +02:00
<br>
<label for="is-admin">Is Admin</label>
2022-10-24 18:37:00 +02:00
<input type="checkbox" name="is_admin" id="is_admin" <?= $editUser->isAdmin()?'checked':'' ?>>
2022-10-23 19:16:10 +02:00
<br>
<!-- maybe later -->
<!-- <input type="hidden" name="_csrf" value="csrf_token" -->
<input type="submit" value="Save">
</form>
<?php include dirname(path: __DIR__) . '/_footer.html.php' ?>