<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vencord EAS</title>
<link href="https://cdn.jsdelivr.net/npm/beercss@3.5.8/dist/cdn/beer.min.css" rel="stylesheet">
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.5.8/dist/cdn/beer.min.js"></script>
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.1/dist/cdn/material-dynamic-colors.min.js"></script>
<style>
body {
padding: 20px;
}
</style>
</head>
<body>
<h3>Vencord EAS Client</h3>
<div class="field suffix border" style="margin-bottom: 0px;">
<select id="endpoint">
<option value="get">Get message</option>
<option value="msg">🔑 Send message</option>
<option value="clear">🔑 Clear message</option>
</select>
<i>arrow_drop_down</i>
</div>
<div class="field label border" style="margin-top: 5px; margin-bottom: 0px;">
<input type="password" id="token">
<label>Token (if needed)</label>
<div class="field label border" style="margin-top: 5px; margin-bottom: 10px;">
<input type="text" id="msg">
<label>Message (if needed)</label>
<button class="responsive" onclick="processSend()" style="margin-bottom: 20px;">
<i>rocket</i>
<span>Send</span>
</button>
<hr>
<h6>Logs</h6>
<p id="log"></p>
<script src="index.js"></script>
</body>
</html>