summaryrefslogtreecommitdiff
path: root/static/login.html
blob: 37035dc8818c658e08b02163aa557c21f070bcb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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>