32 lines
905 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<title>欢迎登录 - 小傅哥拼团</title>
<link rel="stylesheet" href="css/login.css"/>
</head>
<body>
<div class="container">
<form id="loginForm" class="login-form">
<h2>欢迎登录 - 小傅哥拼团</h2>
<div class="input-group">
<input type="text" id="username" required/>
<label for="username">用户名</label>
</div>
<div class="input-group">
<input type="password" id="password" required/>
<label for="password">密码</label>
</div>
<button type="submit">登录</button>
<p class="error-message" id="errorMessage"></p>
</form>
</div>
<script src="js/login.js"></script>
</body>
</html>