Allow adding users from the admin panel

This commit is contained in:
David Hoppenbrouwers
2022-10-09 14:55:49 +02:00
parent 650130d33c
commit f4e543b1f7
3 changed files with 46 additions and 2 deletions

View File

@@ -114,4 +114,12 @@
</tr>
{%- endfor -%}
</table>
<h3>Add user</h3>
<form method=post action=user/new/>
<table>
<tr><td>Name</td><td><input type=text name=name></td></tr>
<tr><td>Password</td><td><input type=password name=password></td></tr>
</table>
<input type=submit value="Add user">
</form>
{%- endblock %}