This repository has been archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (45 loc) · 1.48 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Interactive App</title>
<link rel="stylesheet" href="./inc/w3.css">
</head>
<body>
<header class='w3-container w3-teal'>
<h1>My Interactive App</h1>
</header>
<div class 'w3-contaner w3-white'>
<button class="w3-button w3-grey" id="connectButton">Connect</button><br />
</div>
<div id="warningDialog" class="w3-modal w3-card-4">
<div class="w3-modal-content">
<header class="w3-container w3-red">
<span onclick="document.getElementById('warningDialog').style.display='none'" class="w3-button w3-display-topright">×</span>
<h2><span class="headerText"></span></h2>
</header>
<div class="w3-panel">
<div class='bodyText'></div>
</div>
<footer class="w3-panel w3-red w3-right-align">
<div class='footerText'>My Interactive App</div>
</footer>
</div>
</div>
<!-- Insert this line above script imports -->
<script>
if (typeof module === 'object') { window.module = module; module = undefined; }
</script>
<!-- normal script imports etc -->
<script src="plugin/jquery-3.1.1.slim.min.js"></script>
<script>
// You can also require other files to run in this process
// All of the Node.js APIs are available in this renderer process.
require('./renderer.js');
</script>
<!-- Insert this line after script imports -->
<script>
if (window.module) module = window.module;
</script>
</body>
</html>