-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (43 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ArduTwitch</title>
<link rel="stylesheet" href="src/bootstrap4.5.3/css/bootstrap.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="src/index.css">
</head>
<body>
<nav class="navbar navbar-light bg-light">
<span class="navbar-brand mb-0 h1">Ardwitch</span>
</nav>
<div class="container">
<br>
<h3>List of COM ports</h3>
<div id="error"></div>
<div id="ports"></div>
<br>
<div class="input-group mb-3">
<input type="text" class="form-control" name="com-port" id="com-port" placeholder="Port name" aria-describedby="basic-addon1">
<div class="input-group-prepend">
<button type="button" class="btn btn-outline-success" id="connect-arduino">CONECT</button>
</div>
</div>
<br>
<div class="input-group mb-3">
<input type="password" class="form-control" name="streamlabs-token" id="streamlabs-token" placeholder="Streamlabs SOCKET TOKEN" aria-describedby="basic-addon1">
<div class="input-group-prepend">
<button type="button" class="btn btn-outline-success" id="connect-streamlabs">CONECT</button>
</div>
</div>
<footer>
<p>
<a href="https://streamlabs.com/dashboard#/settings/api-settings" target="_blank">
<img class="img-fluid" src="images/streamlabs.png" alt="streamlabs image">
</a>
</p>
</footer>
</div>
</body>
<script src="./renderer.js"></script>
</html>