-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
36 lines (28 loc) · 766 Bytes
/
Copy pathsettings.php
File metadata and controls
36 lines (28 loc) · 766 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
31
32
33
34
35
36
<?php
session_start()
?>
<!DOCTYPE html>
<html>
<head>
<title>Settings</title>
</head>
<body>
<h1>Account Settings</h1>
<h2>Select account detail you would like to change and what you would like to change it to</h2>
<form action = "includes/db_update.php" method = "POST">
Property:
<br>
<input type="radio" name="detail" value="user_first">First Name
<br>
<input type="radio" name="detail" value="user_last">Last Name
<br>
<input type="radio" name="detail" value="user_email">Email Address
<br>
<input type="radio" name="detail" value="user_pwd">Password
<br>
<input type="radio" name="detail" value="user_type">Account Type
<br>Edit:
<input type="text" name="edit" >
<button type="submit" name="submit">Find a Student</button>
</body>
</html>