summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/auth/register.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'apioforum/templates/auth/register.html.j2')
-rw-r--r--apioforum/templates/auth/register.html.j214
1 files changed, 14 insertions, 0 deletions
diff --git a/apioforum/templates/auth/register.html.j2 b/apioforum/templates/auth/register.html.j2
new file mode 100644
index 0000000..f7eab81
--- /dev/null
+++ b/apioforum/templates/auth/register.html.j2
@@ -0,0 +1,14 @@
+{% extends "base.html.j2" %}
+{% block header %}
+ <h1>{% block title %}register{% endblock %}</h1>
+{% endblock %}
+
+{% block content %}
+<form method="post">
+ <label for="username">Username</label>
+ <input name="username" id="username" required>
+ <label for="password">Password</label>
+ <input type="password" name="password" id="password" required>
+ <input type="submit" value="yes">
+</form>
+{% endblock %}