aboutsummaryrefslogtreecommitdiff
path: root/ui/html/login.tmpl.html
diff options
context:
space:
mode:
authorSamuel Johnson <[email protected]>2025-11-24 13:53:18 -0500
committerSamuel Johnson <[email protected]>2025-11-24 13:53:18 -0500
commit368a462bc744d8e9084eacfaddeb9afcaf7f7133 (patch)
treec6e8f665d6cb9713b9226b10c4a341e60b8e91c2 /ui/html/login.tmpl.html
parent4d4419f51557bef6b64dca8635ed61616d262a9b (diff)
Add session management
Diffstat (limited to 'ui/html/login.tmpl.html')
-rw-r--r--ui/html/login.tmpl.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/ui/html/login.tmpl.html b/ui/html/login.tmpl.html
new file mode 100644
index 0000000..6377dc0
--- /dev/null
+++ b/ui/html/login.tmpl.html
@@ -0,0 +1,19 @@
+{{define "title"}}Login{{end}}
+
+{{define "main"}}
+ <div class="topline">
+ <h2>Log In</h2>
+ </div>
+ <div class="card">
+ <form class="login_form center" action="/login" method="POST">
+ <label for="user">Username:</label>
+ <input type="text" id="user" name="user">
+ <label for="pass_one">Password:</label>
+ <input type="text" id="pass_one" name="pass_one">
+ <label for="pass_two">Password:</label>
+ <input type="text" id="pass_two" name="pass_two">
+ <br>
+ <input type="submit" value="Submit">
+ </form>
+ </div>
+{{end}}