-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 878 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 878 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PC Control</title>
</head>
<body>
<a href="/sleep">Sleep</a> <br/>
<a href="/display/off">Display Off</a> <br/>
<a href="/display/on">Display On</a> <br/>
<a href="/lock">Lock</a> <br/>
<a href="/display/switch/external">Display External</a> <br/>
<a href="/display/switch/internal">Display Internal</a> <br/>
<a href="/display/switch/extend">Display Extend</a> <br/>
<a href="/display/switch/clone">Display Clone</a> <br/>
<a href="/mute">Mute</a> <br/>
<a href="/unmute">Unmute</a> <br/>
<a href="/media/play_pause">Media Play/Pause</a> <br/>
<a href="/media/stop">Media Stop</a> <br/>
<a href="/media/next">Media Next</a> <br/>
<a href="/media/previous">Media Previous</a> <br/>
Volume <br/>
<input type="range" min="0" max="100" onchange="fetch('/volume?volume=' + this.value)"/>
</body>
</html>