aboutsummaryrefslogtreecommitdiff
path: root/src/modules/auth/login.html
blob: c7782bdb8595974d9113f0d9f5798f6bad0f32e4 (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
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>Gnix Login</title>
        <style>
            body {
                background-color: grey;
            }
            form {
                margin: auto;
                width: 200px;
                padding: 20px;
                border: 2px solid black;
                background-color: white;
            }
            input[type="text"],
            input[type="password"] {
                box-sizing: border-box;
                width: 100%;
                margin-bottom: 1em;
            }
        </style>
    </head>
    <body>
        <form action="/_gnix_login" method="post">
            <label for="username">Username: </label><br />
            <input type="text" name="username" id="username" /><br />
            <label for="password">Password: </label><br />
            <input type="password" name="password" id="password" /><br />
            <input type="submit" value="Login" />
        </form>
    </body>
</html>