mirror of https://github.com/itflow-org/itflow
29 lines
1.0 KiB
PHP
29 lines
1.0 KiB
PHP
<div class="modal" id="exportTripsModal" tabindex="-1">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content bg-dark">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title"><i class="fa fa-fw fa-download"></i> Export Trips to CSV</h5>
|
|
<button type="button" class="close text-white" data-dismiss="modal">
|
|
<span>×</span>
|
|
</button>
|
|
</div>
|
|
<form action="post.php" method="post" autocomplete="off">
|
|
<div class="modal-body bg-white">
|
|
<div class="form-group">
|
|
<label>Date From</label>
|
|
<input type="date" class="form-control" name="date_from" value="<?php echo $dtf; ?>">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Date To</label>
|
|
<input type="date" class="form-control" name="date_to" value="<?php echo $dtt; ?>">
|
|
</div>
|
|
|
|
</div>
|
|
<div class="modal-footer bg-white">
|
|
<button type="submit" name="export_trips_csv" class="btn btn-primary">Download CSV</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div> |