-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1.15 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
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<script src="tmi.min.js"></script>
<script src="main.js"></script>
<style>
html, body {
color: #dcdcdc;
background-color: #292929;
}
</style>
<body>
<form name="authinfo">
<label style="font-size:large">username <input style="width:300px;height:20px" id="username" placeholder="twitchdev" required> </label>
<br/>
<label style="font-size:large">oauth <input style="width:300px;height:20px" placeholder="oauth:aaaaaaaaaaa5555555cccc111eeee111" id="oauth" required> </label>
<p>
<a href="docs/get_oauth.html" style="color:light-blue;background-color:powderblue;">What is Oauth?</a>
</p>
<br/>
<label style="font-size:large">channels
<input style="width:300px;height:20px" id="channels" placeholder="twitch, twitchdev, twitchrivals" required>
</label>
</form>
<button id="startbot" type="button" onclick="startbot()" style="width:80px;font-size:large" >START</button>
<button id="stopbot" type="button" onclick="stopbot()" style="width:80px;font-size:large" >STOP</button>
<div style="width:80px;font-size:large">LOG:</div>
<pre id="log" style="height:70vh;overflow-x: scroll;"></pre>
</body>
</html>