diff options
| author | Jokler <jokler@protonmail.com> | 2020-06-21 06:37:46 +0200 |
|---|---|---|
| committer | Jokler <jokler@protonmail.com> | 2020-06-21 06:37:46 +0200 |
| commit | e6468b012d5b33dd16992652da57f11dd5a6e82f (patch) | |
| tree | e89add440df79d4036b9b44d8c77ee6d69e67201 /templates/admin.htm | |
| download | joklerpoints-master.tar.gz joklerpoints-master.zip | |
Diffstat (limited to 'templates/admin.htm')
| -rw-r--r-- | templates/admin.htm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/admin.htm b/templates/admin.htm new file mode 100644 index 0000000..db4aa03 --- /dev/null +++ b/templates/admin.htm @@ -0,0 +1,22 @@ +{% extends "base.htm" %} + +{% block title %}Administration{% endblock %} + +{% block content %} +<h1>User Creation</h1> +<form class="fixed-form" action="/admin" method="POST"> + <label for="user">Username</label> + <input type="text" placeholder="Enter Username" name="user" required> + + <label for="password">Password</label> + <input type="password" placeholder="Enter Password" name="password" required> + + <label for="user">Balance</label> + <input type="text" placeholder="Enter Balance" name="balance" required> + + <button type="submit">Create User</button> +</form> +{% endblock %} + +<!-- vim: expandtab sw=2 ts=2 +--> |
