-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.php
32 lines (29 loc) · 1004 Bytes
/
index.php
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
<?php
include("userpaper/usession.php");
check();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" href="userpaper/css/cover.css" />
<script src="jquery-2.0.0.min.js"></script>
<script src="userpaper/js/cover.js"></script>
<title>登录</title>
</head>
<body>
<div id='cover'>
<img class='cover_img' src="userpaper/img/coverbg.png"/>
<input id='manage_sign' type="button" value='管理员登录' />
<div class='cover_header'>
<span>xiyounet</span>
<div class='cover_line_a'></div>
</div>
<div id='cover_main'>
<input id='username' type='text' placeholder='Username' />
<input id='password' type="password" placeholder='Password'/>
<input id='cover_sign' type="button" value='登录' />
</div>
</div>
</body>
</html>