aboutsummaryrefslogtreecommitdiff
path: root/src/html/login.html
blob: 2afe7d375451e62099c72e41c765707591a2ec46 (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
<!doctype html>
<html lang="en">

<head>
    <title>Mark's Kitchen - Login</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <link rel="stylesheet" type="text/css" href="/css/styles.css">
</head>

<body>
    <div>
        <h1>Login</h1>
        <div class="form">
            <form action="/login" method="post" enctype="application/x-www-form-urlencoded">
                <input type="text" placeholder="Enter Username" name="username" required>
                <input type="password" placeholder="Enter Password" name="password" required>
                <input type="submit" value="Log in">
            </form>
        </div>
    </div>
</body>

</html>