diff --git a/src/edit-prefered-location/edit-prefered-location.html b/src/edit-prefered-location/edit-prefered-location.html new file mode 100644 index 0000000000000000000000000000000000000000..43f9b2fa0405efdea1dace50dc924d414d004767 --- /dev/null +++ b/src/edit-prefered-location/edit-prefered-location.html @@ -0,0 +1,46 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>Edit Prefered Location</title> + <link rel="stylesheet" href="../public/css/styles.css"> + </head> + <body> + <nav> + <ul> + <li><a href="#home">Home</a></li> + <li><a href="#about">About</a></li> + </ul> + </nav> + <div class="container"> + <h2>EDIT PREFERED LOCATION</h2> + <table style="text-align: center; width: 100%;"> + <thead> + <th>No</th> + <th>Location</th> + <th>Actions</th> + </thead> + <tbody> + <tr> + <td>1</td> + <td></td> + <td> + <ul> + <li><a href="#"><img src="public/pencil.png" alt="edit"></a></li> + <li><a href="#"><img src="public/delete.png" alt="delete"></a></li> + </ul> + </td> + </tr> + </tbody> + </table> + <br> + <h2>ADD NEW LOCATION</h2> + <form class="form-group form-inline"> + <input type="text" class="form-control" name="location" > + <button type="submit" class="btn-css">ADD</button> + </form> + <br> + <button type="button" class="btn-danger" >Back</button> + </div> + </body> +</html> diff --git a/src/history/history.html b/src/history/history.html new file mode 100644 index 0000000000000000000000000000000000000000..a961f3eba7899f9090d03daefe0e14aa83801ef2 --- /dev/null +++ b/src/history/history.html @@ -0,0 +1,45 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>History</title> + <link type="text/css" rel="stylesheet" href="../public/css/stylesheet.css"/> + </head> + <body> + <div class="page-header"> + <div class="company-info"> + <p class="company-name"><span>PR</span>-<span>OJEK</span></p> + <p class="company-tagline">wushh.. wush.. wush.. ngeeeeng...</p> + + </div> + <div class="user-info"> + <p class="user-name">Hi, <span>pikapikapikachu</span> !</p> + <p class="logout">Logout</p></div> + </div> + + <div class="container"> + <div class="header-box">ORDER</div> + <div class="header-box active">HISTORY</div> + <div class="header-box">MY PROFILE </div> + </div> + <br> + <h1>TRANSACTION HISTORY</h1> + <div class="container"> + <div class="header-box"> + MY PREVIOUS ORDER + </div> + <div class="header-box active"> + DRIVER HISTORY + </div> + </div> + <div class="item"> + <img src="public/e46_m3_motor.jpg" alt="profile picture"> + + Minggu, 1 Oktober 2017 <br>M3 <br> + Bandung-Solo <br> + gave 10 stars for this order <br>and left comment : + U R everything + + </div> + </body> +</html> diff --git a/src/public/css/stylesheet.css b/src/public/css/stylesheet.css new file mode 100644 index 0000000000000000000000000000000000000000..298db73b525c1fd30e347da770bdcec2510ab358 --- /dev/null +++ b/src/public/css/stylesheet.css @@ -0,0 +1,131 @@ +.header-box { + border: 1px solid black; + padding: 10px 10px 10px 10px; + font-size: 30px; + font-family: sans-serif; + text-align: center; + flex: 1; +} + +.header-box.active { + background-color: #244224; + color: white; +} + +.container { + display: flex; + flex-direction: row; + margin-top: 10px; +} + +.step-container { + display: flex; + flex-direction: row; + margin-bottom: 20px; +} + +.step-box:first-child { + margin-left: 0; + background-color: #fbff96; +} + + +.step-box { + flex: 1; + display: flex; + flex-direction: row; + text-align: center; + border: 1px solid black; + margin-left: 40px; +} + +.round-num { + text-align: center; + line-height: 40px; + background-color: grey; + border-radius: 50%; + width: 40px; + height: 40px; + margin: 5px 5px 5px 5px; +} + +.step-box p { + flex: 1; +} + + +.page-header { + display: flex; + flex-direction: row; + flex: 1; +} + +.user-info { + flex: 1; + text-align: right; +} + +.page-header div p { + margin: 0 0 5px 0; +} +.company-name { + font-size: 35px; +} + +.company-name span { + color: red; + font-weight: bold; +} +.company-name span:first-child { + color: green; +} + +.company-tagline { + color: green; +} + +.user-name span { + font-weight: bold; +} + +.logout { + text-decoration: underline; + color: blue; +} + +.dest-input { + display: flex; + flex-direction: row; +} + +.dest-input p { + text-align: center; + font-size: 25px; +} +.dest-input * { + flex: 1; + margin: 20px; +} + + +.next-button { + background-color: #7ecc20; + border-radius: 8px; + border: 1px solid black; + font-size: 20px; + width: 100px; + text-align: center; + margin: auto; + padding: 10px 0 10px 0; +} +.item{ + display: block; + margin: 20px; +} + +.item img { + margin: 0 10px; + height: 128px; + align-items: center; + float: left; +}