2021-11-19 16:30:17 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<!-- Required meta tags -->
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self';">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
|
|
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css">
|
|
|
|
|
|
|
|
<title>FreeDATA - CHAT</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<!-- bootstrap -->
|
|
|
|
<script src="../node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- chart.js -->
|
|
|
|
<script src="../node_modules/chart.js/dist/chart.min.js"></script>
|
|
|
|
<script src="../node_modules/chartjs-plugin-annotation/dist/chartjs-plugin-annotation.min.js"></script>
|
|
|
|
|
2021-11-19 17:49:36 +00:00
|
|
|
<div class="input-group m-1">
|
|
|
|
<input class="form-control" maxlength="6" style="max-width: 6rem; text-transform:uppercase" id="chatModuleDxCall" placeholder="DX CALL"></input>
|
|
|
|
<input class="form-control" id="chatModuleMessage" placeholder="Message"></input>
|
2021-11-19 16:30:17 +00:00
|
|
|
<button class="btn btn-sm btn-primary me-2" id="sendMessage" type="button">SEND MSG</button>
|
2021-11-19 17:49:36 +00:00
|
|
|
</div>
|
2021-11-19 16:30:17 +00:00
|
|
|
|
2021-11-19 17:49:36 +00:00
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th scope="col">Time</th>
|
|
|
|
<th scope="col">DXCall</th>
|
|
|
|
<!--<th scope="col">DXGrid</th>
|
|
|
|
<th scope="col">Distance</th>-->
|
|
|
|
<th scope="col">Message</th>
|
|
|
|
<!--<th scope="col">SNR</th>-->
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="rx-msg-data">
|
|
|
|
<!--
|
|
|
|
<tr>
|
|
|
|
<th scope="row">1</th>
|
|
|
|
<td>Mark</td>
|
|
|
|
<td>Otto</td>
|
|
|
|
<td>@mdo</td>
|
|
|
|
</tr>
|
|
|
|
-->
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-11-19 16:30:17 +00:00
|
|
|
</body>
|
|
|
|
</html>
|