aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/templates/login.html
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2024-08-16 15:23:07 +0800
committerHsiangNianian <i@jyunko.cn>2024-08-16 15:23:07 +0800
commitee281cb6ef11b8e115e02032a7c899927d2e92e5 (patch)
treeec83b3b57920b181c6c988bc6901a3730f725506 /templates/login.html
parent0817897398dd3ef7f0738838b20cc6c1e67db323 (diff)
downloadfiles-ee281cb6ef11b8e115e02032a7c899927d2e92e5.tar.gz
files-ee281cb6ef11b8e115e02032a7c899927d2e92e5.zip
chore: init project
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