diff --git a/action.php b/action.php index 9596856..7ba7014 100644 --- a/action.php +++ b/action.php @@ -71,9 +71,76 @@ button:hover { background-color: #0056b3; } + .editable { + cursor: pointer; + padding: 5px; + border-radius: 3px; + transition: background 0.3s; + } + .editable:hover { + background:rgb(226, 43, 43); + } + Fuel Required: " . $row['fuel'] . "

"; - echo "

POB OUT: " . $row['pob_out'] . "

"; - echo "

Outbound To: " . $row['out_to'] . "

"; - echo "

ETD: " . $row['etd'] . "

"; + echo "

POB OUT:" . $row['pob_out'] . "

"; + echo "

Outbound To:" . $row['out_to'] . "

"; + echo "

ETD:" . $row['etd'] . "

"; echo "

Email Address: " . $row['email'] . "

"; diff --git a/input.html b/input.html index b9e6a44..00595ab 100644 --- a/input.html +++ b/input.html @@ -8,6 +8,7 @@ let now = new Date(); let localDatetime = now.toISOString().slice(0, 16); // Format for datetime-local input document.getElementById("eta").value = localDatetime; + document.getElementById("etd").value = localDatetime; }); function fetchResults() { @@ -156,13 +157,26 @@
- +
+
+ + +
+
+ + +
+
+ + + +