This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (36 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Meower Bot Web IDE</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<header>
<h1>Meower Bot Web IDE</h1>
<h2>Look in the JavaScript console for detailed info</h2>
</header>
<main>
<div>
<button onclick='startws();'>Start bot</button>
<button onclick='ws.close();document.querySelector("#ulist").innerText = "Logged out of Meower!"'>Stop bot</button>
<button onclick='h()'>Check connection status</button>
<p class="case-warn-1">Username: <input type="text" class="username" /><br><span class="case-warn-2">(this is case-sensitive!)</span></p>
<p>Password: <input type="password" id="password" /></p>
<small>Don't worry, this information doesn't leave your browser or Meower's servers</small>
</div>
<h2>Code</h2><textarea id="code"></textarea>
<br><br><input type="text" id="post" /> <button onclick='post(document.querySelector("#post").value)'>Manually post</button>
<p id="ulist">Not logged into Meower</p>
</main>
<footer>
<small>
Meowerbot Web 1.1.0 by Voxalice<br>
If you're making a very advanced bot, I would recommend these libraries instead:<br>
<a href="https://github.com/MeowerBots/MeowerBot.py">MeowerBot.py</a> (the original!)<br>
<a href="https://github.com/MeowerBots/Meowerbot-Scratch">Meowerbot-Scratch</a>
</small>
</footer>
<script src="main.js"></script>
</body>
</html>