summaryrefslogtreecommitdiff
path: root/static/login.html
diff options
context:
space:
mode:
authorDaniel Hader <[email protected]>2026-05-28 20:12:34 -0500
committerDaniel Hader <[email protected]>2026-05-28 20:12:34 -0500
commit334867ba0732f85a48ad88ef8f3201c10bc1da4e (patch)
tree2267595ee463670e9c87ce22f18660ca2d34d4d8 /static/login.html
parent86555bd1f89154394f4e997786896e710dd2ba1b (diff)
primitive login screen
Diffstat (limited to 'static/login.html')
-rw-r--r--static/login.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/static/login.html b/static/login.html
new file mode 100644
index 0000000..37035dc
--- /dev/null
+++ b/static/login.html
@@ -0,0 +1,32 @@
+<!doctype html>
+
+<html>
+ <head>
+ <meta charset="utf-8" />
+ <title>Code Golf Login</title>
+ <link rel="stylesheet" href="default.css">
+ <script type="text/javascript" src="main.js"></script>
+ </head>
+
+ <body>
+ <div id="layout">
+ <div id="container">
+ <div id="content">
+ <h1>C&amp;! Code Golf Leaderboard</h1>
+ <h2>Login</h2>
+ <form id="login-form" action="" method="get" onsubmit="login()">
+ <label for="login-email">Email</label><br>
+ <input type="text" id="login-email" name="login-email">
+ <br><br>
+ <label for="login-password">Password</label><br>
+ <input type="password" id="login-password" name="login-password">
+ <br><br>
+ <input type="submit" value="Login">
+ </form>
+
+ <center>&copy; 2026 Daniel Hader</center>
+ </div>
+ </div>
+ </div>
+ </body>
+</html>