2020-05-17 12:57:28 +00:00
|
|
|
|
|
|
|
<div class="container" id="create_mode">
|
|
|
|
|
|
|
|
<br>
|
|
|
|
<?php if($this->session->flashdata('message')) { ?>
|
|
|
|
<!-- Display Message -->
|
|
|
|
<div class="alert-message error">
|
|
|
|
<p><?php echo $this->session->flashdata('message'); ?></p>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
|
|
|
<?php echo $page_title; ?>
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title"></h5>
|
|
|
|
<p class="card-text"></p>
|
|
|
|
|
|
|
|
<?php if($this->session->flashdata('notice')) { ?>
|
|
|
|
<div id="message" >
|
|
|
|
<?php echo $this->session->flashdata('notice'); ?>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<?php $this->load->helper('form'); ?>
|
|
|
|
|
|
|
|
<?php echo validation_errors(); ?>
|
|
|
|
|
|
|
|
<form method="post" action="<?php echo site_url('mode/create'); ?>" name="create_profile">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="modeInput">ADIF Mode</label>
|
|
|
|
<input type="text" class="form-control" name="mode" id="modeInput" aria-describedby="modeInputHelp" required>
|
|
|
|
<small id="modeInputHelp" class="form-text text-muted">Name of mode in ADIF-specification</small>
|
|
|
|
</div>
|
2020-05-23 22:06:08 +00:00
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="submodeInput">ADIF Sub-Mode</label>
|
|
|
|
<input type="text" class="form-control" name="submode" id="submodeInput" aria-describedby="submodeInputHelp">
|
|
|
|
<small id="submodeInputHelp" class="form-text text-muted">Name of sub-mode in ADIF-specification</small>
|
|
|
|
</div>
|
2020-05-17 12:57:28 +00:00
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="qrgmodeInput">SSB/CW/DATA</label>
|
|
|
|
<select id="qrgmodeInput" class="form-control mode form-control-sm" name="qrgmode">
|
|
|
|
<option value="CW">CW</option>
|
|
|
|
<option value="SSB">SSB</option>
|
|
|
|
<option value="DATA">DATA</option>
|
|
|
|
</select>
|
|
|
|
<small id="qrgmodeInputHelp" class="form-text text-muted">Defines the QRG-segment in bandplan.</small>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="activeInput">Active</label>
|
|
|
|
<select id="activeInput" class="form-control mode form-control-sm" name="active">
|
|
|
|
<option value="1">active</option>
|
|
|
|
<option value="0">not active</option>
|
|
|
|
</select>
|
|
|
|
<small id="activeInputHelp" class="form-text text-muted">Set to active if to be listed in Modes-list</small>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-primary"><i class="fas fa-plus-square"></i> Create mode</button>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
</div>
|