diff options
author | Mark Powers <markppowers0@gmail.com> | 2019-02-02 10:51:10 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2019-02-02 10:51:10 -0500 |
commit | c21eba4246be5c9831705a86592b45c70648c167 (patch) | |
tree | 0e4470f574ab77287a1ad40f196b1643dd0b1c7d /src/html/login.html | |
parent | d1162d1bd12cbb3eae9889768adbbb293852c066 (diff) |
Add admin panel
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 |