Cloudlog/application/views/distances/index.php

27 行
1.1 KiB
PHP

2020-02-18 17:49:27 +08:00
<div class="container">
<br>
<h2><?php echo $page_title; ?></h2>
<div id="distances_div">
<form class="form-inline">
<label class="my-1 mr-2" for="distplot_bands">Band Selection</label>
2020-02-18 17:49:27 +08:00
<select class="custom-select my-1 mr-sm-2" id="distplot_bands">
<option value="sat">SAT</option>
<?php foreach($bands_available as $band) {
echo '<option value="' . $band . '"' . '>' . $band . '</option>'."\n";
} ?>
</select>
<label class="my-1 mr-2" for="distplot_sats">Satellite</label>
<select class="custom-select my-1 mr-sm-2" id="distplot_sats">
<option value="All">All</option>
<?php foreach($sats_available as $sat) {
echo '<option value="' . $sat . '"' . '>' . $sat . '</option>'."\n";
} ?>
2020-02-18 17:49:27 +08:00
</select>
<button id="plot" type="button" name="plot" class="btn btn-primary" onclick="distPlot(this.form)">Plot</button>
2020-02-18 17:49:27 +08:00
</form>
</div>
</div>