qrz/templates/index.html
Paul 3343adcd65
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
added favicon
2024-05-12 20:40:41 +02:00

43 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>QRZ FRS users database</title>
<link rel="icon" href="static/images/favicon.ico"/>
<link rel="stylesheet" type="text/css" href="static/css/main.css" media="screen">
<link rel="stylesheet" type="text/css" href="static/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="static/css/dataTables.bootstrap4.min.css">
<script src="static/js/jquery.js"></script>
<script src="static/js/jquery.dataTables.js"></script>
<script src="static/js/dataTables.bootstrap4.min.js"></script>
<script src="static/js/datatable.js"></script>
<script src="static/js/functions.js"></script>
</head>
<body>
<h1 class="display-3">QRZ FRS users database</h1>
<p>Indexed mirror of <a href="http://groupe-frs.hamstation.eu">http://groupe-frs.hamstation.eu</a> list of users</p>
<div>
<table id="main_table" class="display table table-hover" style="width: 100%;">
<thead class="thead-dark">
<tr>
<td>QRZ</td>
<td>Name</td>
<td>City</td>
<td>Department</td>
<td>Country</td>
<td>DMRID</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div>
<input type="button" value="Export CSV" onclick="export_frs()">
</div>
</body>
</html>