-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (36 loc) · 1.55 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>ProPresenter 6 Stage Display Message Sender</title>
<link rel="stylesheet" type="text/css" href="./site.css">
<script type="application/javascript" src="./client.js" defer></script>
<script type="application/javascript" src="./site.js" defer></script>
<link rel="stylesheet" href="./tachyons.min.css"/>
<meta name="theme-color" content="#4b3ea3" />
</head>
<body>
<div class="bg-theme white flex">
<h2 class="f6 f4-ns ph3" style="flex-grow:1">Stage Display Messages</h2>
<button id="pref_open" class="db tr">Settings</button>
</div>
<span id="status"></span>
<div id="currentMessage"></div>
<div id="controls" class="w-100">
<input type="text" id="message" placeholder="Enter message here" class="f3"/>
<button id="send">Send<span class="send-button"></span></button>
<button id="clear" class="ph4 pv2">Clear</button>
</div>
<dialog id="preferences">
<h3>Preferences</h3>
<span><label>Address </label><input id="pref_addr" type="text"></span>
<span><label>Port </label><input id="pref_port" type="number" min="1" max="65535"></span>
<span><label>Password </label><input id="pref_pass" type="text"></span>
<button id="pref_save">Save</button>
</dialog>
<div class="dialogBackground"></div>
</body>
</html>