colorrole/client.html

26 lines
841 B
HTML
Raw Permalink Normal View History

2023-03-25 23:29:03 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Apply gradient</title>
<link rel="stylesheet" href="./index.css">
<script src="./client.js"></script>
</head>
<body>
<p id="status"></p>
<div id="setup">
<p>
This tool lets you apply your new gradient to a role using a bot account.
<br />
Once you enter a bot token, you will be shown a list of all roles in the servers the bot can access.
<br />
The bot token is only sent to Revolt and will not be stored.
</p>
<input id="token" type="password" autocomplete="off">
<label for="token">Bot token</label>
<button onclick="login()">Go!</button>
</div>
<div id="servers"></div>
</body>
</html>