You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
619 B
22 lines
619 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<div class="main">
|
|
<div class="form">
|
|
<label for="username">用户名</label>
|
|
<input type="text" id="username" />
|
|
<label for="password">密码</label>
|
|
<input type="password" id="password" />
|
|
<button type="submit" id="submit_user_pwd">确定</button>
|
|
</div>
|
|
</div>
|
|
<script src="lib/zepto.min.js"></script>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html>
|