mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
24 lines
761 B
PHP
24 lines
761 B
PHP
<div class="container" id="create_station_logbook">
|
|
|
|
<br>
|
|
<!-- Display Message -->
|
|
<div id="flashdata" class="alert-message error">
|
|
</div>
|
|
|
|
<?php if($this->session->flashdata('notice')) { ?>
|
|
<div id="message" >
|
|
<?php echo $this->session->flashdata('notice'); ?>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php $this->load->helper('form'); ?>
|
|
|
|
<div class="mb-3">
|
|
<label for="stationLogbookNameInput"><?php echo __("Station Logbook Name");?></label>
|
|
<input type="text" class="form-control" name="logbook_name" id="logbook_name" aria-describedby="stationLogbookNameHelp" placeholder="Home QTH" required>
|
|
<small id="stationLogbookNameHelp" class="form-text text-muted"><?php echo __("You can call a station logbook anything.");?></small>
|
|
</div>
|
|
|
|
|
|
</div>
|