aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/templates/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/login.html')
-rw-r--r--templates/login.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/login.html b/templates/login.html
new file mode 100644
index 0000000..e0c5d68
--- /dev/null
+++ b/templates/login.html
@@ -0,0 +1,19 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>Login</title>
+</head>
+<body>
+ <h1>Login</h1>
+ <form method="post">
+ <label for="username">Username:</label>
+ <input type="text" id="username" name="username" required>
+ <br>
+ <label for="password">Password:</label>
+ <input type="password" id="password" name="password" required>
+ <br>
+ <button type="submit">Login</button>
+ </form>
+</body>
+</html> \ No newline at end of file