aboutsummaryrefslogtreecommitdiff
path: root/htmx/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'htmx/login.html')
-rw-r--r--htmx/login.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/htmx/login.html b/htmx/login.html
new file mode 100644
index 0000000..cec42b4
--- /dev/null
+++ b/htmx/login.html
@@ -0,0 +1,21 @@
+{{define "title"}}Login{{end}}
+{{define "main"}}
+
+
+
+
+<!-- <div style="padding-top: 33vh; max-width: 33vw; margin: 0px auto;"> -->
+<div style="padding-top: 33vh; max-width: 33vw; margin: auto;">
+<form action="/login" method="POST">
+ <label for="username">Username:</label>
+ <input type="text" placeholder="Username" name="username" id="username" required />
+
+ <label for="password">Password:</label>
+ <input type="password" placeholder="Username" name="password" id="password" required />
+
+ <input type="submit" value="Submit">
+</form>
+</div>
+
+
+{{end}}