An error occurred while loading the file. Please try again.
-
Adrian Hartarto Pramudita authoredabccf79e
Forked from
IF3110 / TugasBesar2_2017
17 commits ahead of the upstream repository.
Order.view.php 1.57 KiB
<?php
namespace MotaRaido\Menu\Order;
if (!defined('MOTAFW'))
{
echo 'This file can only be called via the main index.php file, and not directly';
exit();
}
?>
<div class="container">
<div class="edit-profile-header">
Make an order
</div>
<div class="progress-container">
<div class="progress selected">
<div class="progress-num">1</div> Select Destination
</div>
<div class="progress">
<div class="progress-num">2</div> Select a driver
</div>
<div class="progress">
<div class="progress-num">3</div> Complete your order
</div>
</div>
<form action=<?php echo "/order/" . $this->user . "/selectdriver"; ?> method='post'>
<div class="edit-profile-btm">
<div class="form-input">
<label for="pick-point">Picking point</label>
<input class="ep-textarea" type="text" name="pick-point" />
</div>
<div class="form-input">
<label for="destination">Destination</label>
<input class="ep-textarea" type="text" name="destination" />
</div>
<div class="form-input">
<label for="pref-driver">Preferred Driver</label>
<input class="ep-textarea" type="text" name="pref-driver" placeholder="(Optional)"/>
</div>
<div class="right-align">
<input class="accept-button select-driver-btn" id="save-profile" type="submit" value="Next" />
</div>
</div>
</form>
</div>