From f2bec81527be7a0d6bed4d793aea85ce08379e32 Mon Sep 17 00:00:00 2001 From: adyanf <adyanaufalf@gmail.com> Date: Sun, 1 Oct 2017 17:37:50 +0700 Subject: [PATCH] add editpreferredlocations front-end (minus icon) --- editpreferredlocations.html | 52 +++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 editpreferredlocations.html diff --git a/editpreferredlocations.html b/editpreferredlocations.html new file mode 100644 index 0000000..1beef8d --- /dev/null +++ b/editpreferredlocations.html @@ -0,0 +1,52 @@ +<!DOCTYPE html> +<html> + <head> + <title>Edit Profile</title> + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> + <link rel="stylesheet" href="css/profile.css"> + </head> + <body> + <div class="apps"> + <div class="heading"> + <h2>EDIT PREFERRED LOCATIONS</h2> + </div> + <table border="1" class="data-location"> + <thead> + <tr> + <th>No</th> + <th>Location</th> + <th>Actions</th> + </tr> + </thead> + <tbody> + <tr> + <td>1</td> + <td>Pewter City</td> + <td>✏</td> + </tr> + <tr> + <td>2</td> + <td>Saffron City</td> + <td></td> + </tr> + <tr> + <td>3</td> + <td>SkyPillar City</td> + <td></td> + </tr> + </tbody> + </table> + <div class="add-location"> + <h3>ADD NEW LOCATION</h3> + <form action=""> + <input type="text" name="place" required> + <input type="submit" value="ADD"> + </form> + </div> + <div class="back"> + <a href="#">BACK</a> + </div> + </div> + <script src="js/profile.js"></script> + </body> +</html> -- GitLab