diff options
Diffstat (limited to 'src/html/login.html')
-rw-r--r-- | src/html/login.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/html/login.html b/src/html/login.html new file mode 100644 index 0000000..53a2d06 --- /dev/null +++ b/src/html/login.html @@ -0,0 +1,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/bootstrap.css"> + <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"> + </form> + </div> + </div> +</body> + +</html>
\ No newline at end of file |