addressbook/templates/admin/users_add.html.php

30 lines
897 B
PHP
Raw Normal View History

2022-10-24 18:37:32 +02:00
<?php include dirname(path: __DIR__) . '/_header.html.php'; ?>
<form method="POST">
<label for="nick">Username</label>
2022-10-27 15:38:33 +02:00
<input type="text" name="nick" id="nick" maxlength="20" required>
2022-10-24 18:37:32 +02:00
<br>
2022-10-24 20:04:36 +02:00
<label for="new_password">Password</label>
2022-10-27 15:38:33 +02:00
<input type="password" name="new_password" id="new_password" maxlength="40" required>
2022-10-24 18:37:32 +02:00
<br>
<label for="first">First</label>
2022-10-27 15:38:33 +02:00
<input type="text" name="first" id="first" maxlength="40" required>
2022-10-24 18:37:32 +02:00
<br>
<label for="last">Last</label>
2022-10-27 15:38:33 +02:00
<input type="text" name="last" id="last" maxlength="40" required>
2022-10-24 18:37:32 +02:00
<br>
2022-10-24 18:43:43 +02:00
<label for="is_admin">Is Admin</label>
2022-10-24 18:37:32 +02:00
<input type="checkbox" name="is_admin" id="is_admin">
<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' ?>