43 lines
974 B
HTML
43 lines
974 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>RPi Ctrl</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0.5rem;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: #222;
|
|
color: #eee;
|
|
font-family: system-ui, sans-serif;
|
|
}
|
|
|
|
a {
|
|
display: block;
|
|
margin-bottom: 1rem;
|
|
padding: 0.5rem 1rem;
|
|
border: 1px solid #3684d3;
|
|
border-radius: 0.25rem;
|
|
text-decoration: none;
|
|
color: #eee;
|
|
}
|
|
|
|
a:hover {
|
|
background: #3684d3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<a href="/off">Power off</a>
|
|
<a href="/ping">Ping 1.1.1.1</a>
|
|
<a href="/ips">List IPs</a>
|
|
<a href="/apcfg">Show AP config</a>
|
|
<a href="/temp">Get CPU temp</a>
|
|
</body>
|
|
</html>
|