-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path1.php
29 lines (27 loc) · 951 Bytes
/
1.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
<html>
<head>
<title>Student log in </title>
</head>
<body>
<form method="post" action="3.php">
<table border="0">
<tr>
<td><label>Name</label></td>
<td><input type="text" name="stud_name" /></td><br>
</tr>
<tr>
<td><label>Password</label></td>
<td><input type="text" name="stud_password"/></td>
</tr>
<tr>
<td></td>
<td><input type="checkbox" name="check" value="yes"/>Forget your password</td>
</tr>
<tr>
<td><input type="submit" value="login"/></td>
<td><input type="submit" value="ChangePassword">
</tr>
</table>
</form>
</body>
</html>