simpleSA/data/about.html
2020-08-15 19:36:51 +01:00

64 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>[TinySA]</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;">
The TinySA has been developed by Erik PD0EK.
This version has been adapted to run on the ESP32 DevKit module by Dave M0WID and John WA2FZW.
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"></span></div>
</body>
</html>