-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (56 loc) · 1.97 KB
/
Copy pathindex.html
File metadata and controls
63 lines (56 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{hostname}}</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
}
.button-container {
text-align: center;
}
.api-button {
padding: 20px 40px;
font-size: 20px;
cursor: pointer;
border: none;
background-color: #92A5B4;
color: white;
border-radius: 5px;
}
</style>
<script>
async function activeInput(action = 'get') {
const url = '/api/active_input/';
const options = action === 'set' ? { method: 'POST' } : {};
if (action === 'set')
document.querySelector('#button-text').innerText = 'Switching...';
const response = await fetch(url, options);
const data = await response.json();
if (response.ok) {
input = Object.keys(data.active_input)[0];
document.querySelector('#button-text').innerText = 'Active input: ' + data.active_input[input].name;
document.querySelector('.api-button').style.backgroundColor = data.active_input[input].color;
} else {
document.querySelector('#button-text').innerText = 'Error: ' + data.message;
document.querySelector('.api-button').style.backgroundColor = '#ff2d00';
}
}
window.onload = activeInput();
</script>
</head>
<body>
<div class="button-container">
<button class="api-button" onclick="activeInput('set')">
<span id="button-text">Loading...</span>
</button>
</div>
</body>
</html>