aboutsummaryrefslogtreecommitdiff
path: root/templates/pages/login.html
diff options
context:
space:
mode:
authorJJ <nicetry@noemail.com>2025-03-19 14:53:53 +0000
committerJJ <nicetry@noemail.com>2025-03-19 14:53:53 +0000
commit84b036b926d90b52956350d99b3a070b3dd1d7ac (patch)
treef7e40a6ef8f0eb56136340f9638dd6a17b5366e1 /templates/pages/login.html
first commit
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 %}