blob: c24f2e13ef783591b0179807009da3c632a26f53 (
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
|
<!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">
<meta name="description" content="Login to marks.kitchen">
</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>
|