-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 830 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (28 loc) · 830 Bytes
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
<?php session_start();
$_SESSION['view'];
$_SESSION['identy'];
?>
<html>
<head>
<link rel="stylesheet" href="login/login.css">
<meta charset="utf-8"/>
</head>
<body>
<div id="mainpage">
<header>
<img src="login/welcome.png">
<img src="login/logo.png" alt="">
</header>
<div id="input">
<form action="login.php" method="post">
<input type="text" name="memberID" value="账号" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = '账号';}">
<input type="password" name="psd" value="Password"onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Password';}">
<input id="submit" type="submit" value="登录">
</form>
</div>
<div id="otherChoices">
<a id="a1" href="forget">忘记密码</a>
</div>
</div>
</body>
</html>