summaryrefslogtreecommitdiff
path: root/static/login.html
blob: fc10aef5095120fe0600a9614a48bd82d1d37102 (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
33
34
35
36
37
<!doctype html>

<html>
    <head>
        <meta charset="utf-8" />
        <title>Code Golf Login</title>
        <link rel="stylesheet" href="default.css">
        <script type="text/javascript" src="login.js"></script>
    </head>

    <body onload="init()">
        <div id="layout">
            <div id="container">
                <div id="content">
                    <a href="index.html">Home</a>
                    <h1>C&amp;! Code Golf Leaderboard</h1>
                    <h2>Login</h2>
                    <form id="login-form">
                        <div id="error" hidden>
                            <span id="error-message" style="color: red"></span>
                            <br><br>
                        </div>
                        <label for="login-email">Email</label><br>
                        <input type="text" id="login-email" name="email">
                        <br><br>
                        <label for="login-password">Password</label><br>
                        <input type="password" id="login-password" name="password">
                        <br><br>
                        <input type="submit" value="Login">
                    </form>
                       
                    <center>&copy; 2026 Daniel Hader</center>
                </div>
            </div>
        </div>
    </body>
</html>