Newer
Older
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
<html>
<head>
<link href="../../css/primary.css" type="text/css" rel="stylesheet">
<link href="../../css/edit-profile.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<h1>EDIT PROFILE INFORMATION</h1>
<form action="#" method="post">
<div class="edit-image">
<div class="div-profile-image">
<img src="../../img/pikachu.jpg" class="profile-image">
</div>
<div class="browse-image">
<label>Update profile picture</label>
<br />
<br />
<input type="file" name="image-file" value="browse..">
</div>
</div>
<div>
<div class="edit-data">
<label class="form-label">Your Name</label>
<input type="text" placeholder="Enter your name..">
</div>
<div class="edit-data">
<label class="form-label">Phone</label>
<input type="text" placeholder="Enter your phone number..">
</div>
<div class="edit-data">
<label class="form-label">Status Driver</label>
<div class="checkbox">
<input type="checkbox">
</div>
</div>
</div>
<div>
<div>
<a class="back" href="dashboard.php">BACK</a>
<input type="submit" value="SAVE" class="save">
</div>
</div>
</form>
</div>
</body>
</html>