-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (47 loc) · 1.55 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
53
54
55
56
57
58
59
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#" xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh" lang="zh">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Login - Initium Syndicate</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="format-detection" content="telephone=no" />
<link rel="stylesheet" type="text/css" href="./static/style.css">
<script src="./static/jquery-2.1.1.min.js"></script>
<script>
</script>
</head>
<body>
<div id="wrapper">
<div id="content" class="login">
<h2>请 登 录</h2>
<div id="login-box">
<form>
<p>
<label for="account">帐号:</label>
<input type="text" name="" value="" placeholder="[email protected]" id="account">
</p>
<p>
<label for="password">密码:</label>
<input type="password" name="" value="" placeholder="" id="password">
</p>
<p>
<label for="remember"><input type="checkbox" name="" value="" id="remember">保持登录状态</label>
</p>
<p>
<button type="submit" id="btn-login">登录</button>
<br/>
<small>无法登录?<a href="mailto:[email protected]?subject=Syndicate Account Help">请给我们发邮件</a></small>
</p>
</form>
<p><strong><a href="">申请帐号</a></strong></p>
</div>
</div>
</div><!-- END #wrapper -->
<footer class="login">
<p>©2015 Kaiduan Culture Enterprise. All Rights Reserved.</p>
</footer>
</body>
</html>