| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <!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="static/css/login.css">
- </head>
- <body>
- <div class="login-box">
- <div class="logo"> 🌾 </div>
- <h1>河南云飞科技设备管理平台</h1>
- <div class="subtitle">
- 科技赋能农业,数据驱动未来
- </div>
- <form id="loginForm">
- <input id="username"
- type="text"
- placeholder="账号"
- required>
- <input id="password"
- type="password"
- placeholder="密码"
- required>
- <button type="submit">
- 登录
- </button>
- </form>
- <div id="msg"></div>
- </div>
- <script src="static/js/login.js"></script>
- </body>
- </html>
|