Files
AvianVisitors/scripts/index.html
T
mcguirepr89 a0722fbf0f more testing
2022-02-18 12:47:17 -05:00

91 lines
2.1 KiB
HTML

<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
font-family: 'Arial', 'Gill Sans', 'Gill Sans MT',
' Calibri', 'Trebuchet MS', 'sans-serif';
box-sizing: border-box;
box-sizing: border-box;
}
/* Create two unequal columns that floats next to each other */
.column {
float: left;
padding: 10px;
}
.first {
width: calc(50% - 70px);
}
.second {
width: calc(50% - 30px);
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
body {
background-color: rgb(119, 196, 135);
}
a {
text-decoration: none;
color: white;
}
.block {
display: block;
font-weight: bold;
width:100%;
border: none;
background-color: #04AA6D;
padding: 20px 20px;
color: white;
font-size: medium;
cursor: pointer;
text-align: center;
}
@media screen and (max-width: 1000px) {
.column {
float: none;
width: 100%;
}
}
</style>
<body style="background-color: rgb(119, 196, 135);">
<div class="row">
<div class="column first">
<form action="/scripts/filemanager/filemanager.php" target="_top">
<button type="submit" class="block">File Manager</button>
</form>
<form action="/scripts/adminer.php?sqlite=&username=&db=birds.db" target="_top">
<button type="submit" class="block">Database Maintenance</button>
</form>
<form action="/scripts/config.php">
<button type="submit" class="block">Settings</button>
</form>
<form action="/scripts/system_controls.php">
<button type="submit" class="block">System Controls</button>
</form>
</div>
<div class="column second">
<form action="http://birdnetpi.local:8888" target="top">
<button type="submit" class="block">Web Terminal</button>
</form>
<form action="/scripts/service_controls.php">
<button type="submit" class="block">Manage Services</button>
</form>
<form action="/scripts/include_list.php">
<button type="submit" class="block">Included Species List</button>
</form>
<form action="/scripts/exclude_list.php">
<button type="submit" class="block">Excluded Species List</button>
</form>
</div>
</div>
</body>