summaryrefslogtreecommitdiff
path: root/src/login.html
blob: 0b7700985912b6e9be00b947a58db453986ca2d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="main.css">
        <script src="main.js" defer></script>
    </head>
    <body>
        <div id="content">
            <form action="javascript:login_form()">
                <label for="id">ID</label>
                <input type="text" id="id" minlength="4" maxlength="4" pattern="[0123456789abcedfABCDEF]{4}" required>
                <label for="password">Password</label>
                <input type="password" id="password" minlength="4" required>
                <input type="submit" value="Login">
            </form>
        </div>
        <footer>
            <center>
                <a href="/">POKO</a>
            </center>
        </footer>
    </body>
</html>