summaryrefslogtreecommitdiffstats
path: root/templates/admin.htm
diff options
context:
space:
mode:
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
+-->