|
@@ -0,0 +1,27 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="zh-CN">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>仓库管理系统登录</title>
|
|
|
+ <link rel="stylesheet" href="../css/styles.css"> <!-- 引入CSS样式文件,注意路径是相对于HTML文件的位置 -->
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+<div class="login-container">
|
|
|
+ <h2>登录</h2>
|
|
|
+ <form id="loginForm">
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="username">用户名:</label>
|
|
|
+ <input type="text" id="username" name="username" required> <!-- 用户输入用户名 -->
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="password">密码:</label>
|
|
|
+ <input type="password" id="password" name="password" required> <!-- 用户输入密码 -->
|
|
|
+ </div>
|
|
|
+ <button type="submit">登录</button> <!-- 提交按钮 -->
|
|
|
+ </form>
|
|
|
+ <a href="#">忘记密码?</a> | <a href="#">注册新账号</a> <!-- 额外的链接 -->
|
|
|
+</div>
|
|
|
+<script src="../js/app.js"></script> <!-- 引入JavaScript文件,注意路径是相对于HTML文件的位置 -->
|
|
|
+</body>
|
|
|
+</html>
|