-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditAccount.php
54 lines (33 loc) · 1.75 KB
/
editAccount.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="editAccount.css">
<title>Edit Account</title>
</head>
<body>
<center>
<img src="userAccountImages/blankPP.png" alt="Profile Photo" width="260px"><br>
<h1 color="black">Welcome, User!</h1>
</center>
<form method="post">
<div style="margin-left:20%;width:800px; border:2px solid white; min-height: 650px;">
<br><br><br>
<div style="margin-left: 250px;">
<label><b>You are currently signed in as, <a style="color:red">user name</a> </b></label> <br><br><br><br>
<label for="name"><b>Name : </b></label></br>
<input type="textt" id="name : " required><br><br></br>
<label for="email"><b>E-mail Address : </b></label></br>
<input type="email" id="email" ><br><br></br>
<label for="age"><b>Age : </b></label></br>
<input type="number" id="age : " required><br><br></br>
<label for="address"><b>Address : </b></label></br>
<input type="textarea" id="address : " required><br><br></br>
<button type="submit" name="confirmChanges" style="width:50%">Confirm Changes </a></button><br>
<button type="submit" name="submit" style="width:50%"> Submit </a></button><br>
<br><br>
</div>
</div>
<br><br>
</form>
</body>
</html>