Files
AvianVisitors/homepage/menu.html
T
2022-02-22 15:28:05 -05:00

94 lines
2.7 KiB
HTML

<html>
<head>
<title>HTML Frames Example - Menu</title>
<style type="text/css">
a {
text-decoration:none;
margin: 0px 0px 0px 0px;
color:black;
font-size: small;
}
body {
font-family:verdana,arial,sans-serif;
font-size:medium;
margin:10px;
background-color: rgb(119, 196, 135);
text-align: left;
padding-bottom: 30px;
}
form {
padding:0;
margin:0;
}
h3 {
margin: 0px 0px -15px 0px;
text-align: center;
}
h4,h5 {
text-align: left;
margin: 0px 0px 5px 0px;
}
footer {
background: rgb(119, 196, 135);
position: fixed;
padding-top: 10px;
left: 0;
bottom: 0;
width:100%;
}
button {
background-color: transparent;
text-size:large;
border:none;
cursor:pointer;
}
hr {
border-bottom: 1px solid black;
}
body::-webkit-scrollbar {
display:none
}
</style>
</head>
<body>
<h5>Extractions</h5>
<form action="/play.php" method="POST" target="content">
- <button type="submit" name="bydate" value="bydate">By Date</button>
</form>
<form action="/play.php" method="POST" target="content">
- <button type="submit" name="byspecies" value="byspecies">By Species</button>
</form>
- <a href="/Processed/" target="content">Processed</a><br>
<hr class="solid">
<h5>System</h5>
- <a href="/scripts/" target="content">Tools</a><br>
- <a href="/phpsysinfo/" target="content">Info</a><br>
- <a href="http://birdnetpi.local:8080" target="content">Log</a><br>
<hr class="solid">
<h5>External</h5>
- <a href="https://app.birdweather.com" target="_content">BirdWeather</a><br>
- <a href="https://github.com/mcguirepr89/BirdNET-Pi" target="_content">Repository</a><br>
- <a href="https://github.com/mcguirepr89/BirdNET-Pi/wiki" target="_content">Wiki Help Page</a><br>
- <a href="https://v2.wttr.in/35.2916,-80.8201" target="content">Wttr.in Report</a><br>
- <a href="https://birdnet.cornell.edu" target="_content">BirdNET</a><br>
<hr class="solid">
<h5>Other<br>BirdNET-Pis</h5>
- <a href="https://birdnetpi.pmcgui.xyz" target="top">United States</a><br>
- <a href="https://birds.naturestation.net" target="top">South Africa</a><br>
- <a href="https://birdnet.svardsten.se" target="top">Sweden</a><br>
- <a href="https://birdnetgv.ddnss.de" target="top">Germany</a>
</body>
<footer style="font-size: small;">
Icon by <a target="_content" style="font-weight: bold" href="https://www.freepik.com" title="Freepik">Freepik</a> from <a target="_content" style="font-weight: bold" href="https://www.flaticon.com/" title="Flaticon">Flaticon.com</a>
</footer>
</html>