-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (47 loc) · 1.91 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<!-- 确保IE浏览器使用最新渲染,并设置移动设备的视口 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KK的电商平台</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="content">
<div class="login-wrapper">
<div class="left-img">
<img src="./asset/bg.jpg" />
<div class="glass">
<div class="title">KK的电商平台</div>
</div>
</div>
<div class="right-login-form">
<div class="form-wrapper">
<h1>登录</h1>
<div class="input-items">
<span class="input-tips">
邮箱
</span>
<input type="text" class="inputs" placeholder="输入邮箱">
</div>
<div class="input-items">
<span class="input-tips">
密码
</span>
<input type="password" class="inputs" placeholder="输入密码">
<a href="./forgetpassword.html" target = "_blank" title="点击可跳转到忘记密码页面">忘记密码</a>
<!-- <span class="forgot">忘记密码</span> -->
</div>
<button class="btn">登陆</button>
<div class="siginup-tips">
<span>还没有账户?</span>
<a href="./signup.html" target="_blank" title="点击可跳转到注册页面">免费注册</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>