-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdatementor.html
33 lines (27 loc) · 1 KB
/
updatementor.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Welcome to my page">
<link rel="stylesheet" href="Css/updateuser.css">
<title>Update Page</title>
</head>
<body>
<div class="father">
<fieldset>
<legend>Change Mentor</legend>
<form action="updatementor.php" method="POST">
<input class="txt" type="number" placeholder="Old ID" name="old" required>
<br><br><br>
<input class="txt" type="number" placeholder="New ID" name="new" required>
<div class="move">
<input class="sub" type="submit" value="Update" name="update">
</div>
<div class="move2">
<a href="update.html">Back</a>
</div>
</form>
</fieldset>
</div>
</body>
</html>