aboutsummaryrefslogtreecommitdiff
path: root/templates/pages/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/pages/login.html')
-rw-r--r--templates/pages/login.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/pages/login.html b/templates/pages/login.html
new file mode 100644
index 0000000..dfee9a0
--- /dev/null
+++ b/templates/pages/login.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %} {% block title %}login{% endblock %} {% block heading
+%}
+<h1>login</h1>
+{% endblock %} {% block content %}
+<form hx-post="/login" hx-trigger="submit load" hx-target="#message">
+ <label for="username">username</label>
+ <input type="text" name="username" id="username" />
+ <label for="password">password</label>
+ <input type="password" name="password" id="password" />
+ <button type="submit">submit</button>
+</form>
+<p id="message"></p>
+{% endblock %}