summaryrefslogtreecommitdiffstats
path: root/templates/admin.htm
diff options
context:
space:
mode:
authorJokler <jokler@protonmail.com>2020-06-21 06:37:46 +0200
committerJokler <jokler@protonmail.com>2020-06-21 06:37:46 +0200
commite6468b012d5b33dd16992652da57f11dd5a6e82f (patch)
treee89add440df79d4036b9b44d8c77ee6d69e67201 /templates/admin.htm
downloadjoklerpoints-e6468b012d5b33dd16992652da57f11dd5a6e82f.tar.gz
joklerpoints-e6468b012d5b33dd16992652da57f11dd5a6e82f.zip
Initial commitHEADmaster
Diffstat (limited to 'templates/admin.htm')
-rw-r--r--templates/admin.htm22
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
+-->