simpleSA/data/about.html
M0WID 0ce1ca00f8 Commands via terminal
Enabled console commands via normal terminal emulator
Added menu for calibration of filters
2020-10-19 23:25:56 +01:00

64 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>[simpleSA]</title>
<link rel="stylesheet" type="text/css" href="styles.css" media="all" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="support.js"></script>
<script type="text/javascript">
// At this point the page is running
$(document).ready(function () {
// Update the details
updateNameVersion();
});
</script>
</head>
<body>
<div class='norm'>
<h1>
<span id="programName">[programName]</span>&nbsp;<span id="programVersion">[programVersion]</span>
</h1>
<button id="homeButton" onclick="window.location.href='index.html';">Home</button>
<!-- <button id="settingsButton" onclick="window.location.href='settings.html';">Settings</button>
<button id="helpButton" onclick="window.location.href='help.html';">Help</button>
<button id="aboutButton" onclick="window.location.href='about.html';">About</button> -->
<br />
<br />
<!-- About Div -->
<div id="aboutDiv">
<hr />
<h1>About</h1>
<p style="max-width:700px;">
This simpleSA running on an ESP32 has been adapted by Dave M0WID and John WA2FZW.<br />
It was based on an early arduino prototype of the TinySA by Erik PD0EK.<br />
Information can be found at <a href = "https://groups.io/g/HBTE">https://groups.io/g/HBTE</a>
</p>
<hr/>
<form method="get" action="/doReboot">
To reboot click <button style="background-color: red; color: white;"
onclick="return confirm('Are you sure?')" type="submit">here</button>
</form>
</div>
</div>
<div id=footer>Copyright &copy; <span id="programCopyright">M0WID and WA2FZW</span></div>
</body>
</html>