-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
22 lines (19 loc) · 824 Bytes
/
Copy pathindex.php
File metadata and controls
22 lines (19 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
session_start();
$_SESSION['id']=NULL;
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<form action="checkpasswd.php" method="post" align="center">
<table align="center" height="10%">
<tr><td align="center" MAXLENGTH=15><label for="login">Login:</label></td><td><input type="text" id="login" name="at" value="" size="15" maxlength="15" /></td></tr>
<tr><td align="center" MAXLENGTH=15><label for="passwd">Password:</label></td><td><input type="password" id="pw" name="pw" value="" size="15" maxlength="255" /></td></tr>
<tr><td colspan="2" align="center"><input type="submit" name="Login" value="Login" /></td></tr>
</table>
</form>
<?php
//if($_SESSION['account']!=NULL)echo 'okk';
//echo $_POST['pw'];
?>
</body>
</html>