summaryrefslogtreecommitdiffstats
path: root/templates/admin.htm
blob: db4aa034d6e834b36887dae302c83d22b4d18ab2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
-->