-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.57 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
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdn.bootcss.com/semantic-ui/2.2.7/semantic.min.css">
<title>Document</title>
<style>
body{
background-color: #fff;
}
body > .grid{
height: 100%;
}
.image{
margin-top: -100px;
}
.column{
max-width: 450px;
}
</style>
</head>
<body>
<div class="ui middle aligned center aligned grid">
<div class="column">
<h2 class="ui teal image header">
<img class="image" src="http://ac-pfv5xzae.clouddn.com/9ba209488bf40c750184.png" alt="" class="image">
<div class="content">使用您的账号登录</div>
</h2>
<form action="" class="ui large form">
<div class="ui stacked segment">
<div class="field">
<div class="ui left icon input">
<i class="user icon"></i>
<input type="text" name="email" placeholder="E-mail Address">
</div>
</div>
<div class="field">
<div class="ui left icon input">
<i class="lock icon"></i>
<input type="text" placeholder="Password">
</div>
</div>
<div class="ui fluid large teal submit button">登录</div>
</div>
</form>
<div class="ui message">新用户?<a href="#">注册</a></div>
</div>
</div>
</body>
</html>