-
Notifications
You must be signed in to change notification settings - Fork 1
/
signin.html
38 lines (38 loc) · 1.38 KB
/
signin.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>vinko</title>
<link rel="stylesheet" href="styles/vendor/pure-min.css" />
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<section class="container medium">
<div class="wrapper" id="login">
<div class="alert alert-error">
密码错误
</div>
<div class="grid">
<header>
<h1>欢迎回来</h1>
</header>
<form action="" class="pure-form pure-form-aligned">
<div class="pure-control-group">
<label for="username">用户名</label>
<input type="text" name="username" class="pure-u-1-2"/>
</div>
<div class="pure-control-group">
<label for="password">密码</label>
<input type="password" name="password" class="pure-u-1-2" />
</div>
<div class="pure-controls">
<button class="pure-button pure-button-primary" type="submit">登入</button>
</div>
</form>
</div>
</div>
</section>
</body>
<script src="http://code.jquery.com/jquery-2.0.2.min.js"></script>
<script src="scripts/vinko.js"></script>
</html>