kopia lustrzana https://github.com/magicbug/Cloudlog
44 wiersze
2.0 KiB
PHP
44 wiersze
2.0 KiB
PHP
<br />
|
|
If you can't find your QSO in the log, please fill out the form below. You will be contacted after the log has been
|
|
checked.<br />
|
|
<table style="width:100%"
|
|
class="notinlog-table table-sm table table-bordered table-hover table-striped table-condensed text-center">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Date</th>
|
|
<th>Time (UTC)</th>
|
|
<th class="center"><span class="larger_font band">Band</th>
|
|
<th class="center">Mode</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>1</td>
|
|
<td><input class="form-control" type="date" name="date" value="" id="date" placeholder="YYYY-MM-DD"></td>
|
|
<td><input class="form-control qsotime" type="text" name="time" value="" id="time" maxlength="5" placeholder="HH:MM"></td>
|
|
<td><input class="form-control" type="text" name="band" value="" id="band"></td>
|
|
<td><input class="form-control" type="text" name="mode" value="" id="mode"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<button type="button" onclick="oqrsAddLine(this.form);" class="btn btn-sm btn-primary"><i class="fas fa-plus-square"></i> Add line</button>
|
|
<br />
|
|
<form>
|
|
<div class="form-group">
|
|
<label for="message">Message</label>
|
|
<textarea name="message" class="form-control" id="messageInput" rows="3" aria-describedby="messageHelp"></textarea>
|
|
<small id="messageHelp" class="form-text text-muted">Any extra information we need to know about?</small>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="emailInput">E-mail</label>
|
|
<input type="text" class="form-control" name="email" id="emailInput" aria-describedby="emailInputHelp" required>
|
|
<small id="emailInputHelp" class="form-text text-muted">Your e-mail address where we can contact you</small>
|
|
</div>
|
|
|
|
<button type="button" onclick="saveNotInLogRequest(this.form);" class="btn btn-sm btn-primary"><i
|
|
class="fas fa-plus-square"></i> Send not in log request</button>
|
|
|
|
</form>
|