-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
36 lines (32 loc) · 1.34 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="viewport" content="width=device-width, initial-scale=1.0">
<title>Physical Web URL Broadcaster</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body class="error">
<div id="dialog" class="hide" aria-hidden="true">
<div class="vertical-center" style="height: 45px; width: 80%;">
<div class="url-wrapper">
<input type="text" id="input" aria-label="Enter URL to broadcast" />
<input type="submit" id="submit" value="Set" />
<ul class="url-history">
</ul>
</div>
<div class="labels">
<div class="label desc">Broadcast URL using:</div>
<button class="label on" id="mode-ble" aria-pressed="true" aria-label="Broadcast URL using Bluetooth">Bluetooth</button>
<button class="label off" id="mode-mdns" aria-pressed="false" aria-label="Broadcast URL using mDNS">mDNS</button>
</div>
</div>
</div>
<div id="eddystone" class="vertical-center">
<h1 id="header" role="button" tabindex="1" aria-controls="dialog" aria-describedby="message"></h1>
</div>
<div id="status"><span id="message" role="status"></span></div>
<script src="js/app.js"></script>
</body>
</html>