aboutsummaryrefslogtreecommitdiff
path: root/ui/html/pages/login.tmpl.html
diff options
context:
space:
mode:
Diffstat (limited to 'ui/html/pages/login.tmpl.html')
-rw-r--r--ui/html/pages/login.tmpl.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/ui/html/pages/login.tmpl.html b/ui/html/pages/login.tmpl.html
new file mode 100644
index 0000000..6eb303a
--- /dev/null
+++ b/ui/html/pages/login.tmpl.html
@@ -0,0 +1,22 @@
+{{define "title"}}Login{{end}}
+{{define "description"}}Login Portal{{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>
+ <div class="right">
+ <input type="submit" value="Submit">
+ </div>
+ </form>
+ </div>
+{{end}}