<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>