This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
VencordEAS/front/index.html

46 lines
1.5 KiB
HTML
Raw Normal View History

2024-06-17 18:27:43 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-06-18 01:10:59 -04:00
<title>Vencord EAS</title>
2024-06-17 18:27:43 -04:00
<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">
2024-06-18 01:10:59 -04:00
<option value="get">Get message</option>
<option value="msg">🔑 Send message</option>
<option value="clear">🔑 Clear message</option>
2024-06-17 18:27:43 -04:00
</select>
<i>arrow_drop_down</i>
</div>
<div class="field label border" style="margin-top: 5px; margin-bottom: 0px;">
2024-06-18 01:10:59 -04:00
<input type="password" id="token">
2024-06-17 18:27:43 -04:00
<label>Token (if needed)</label>
</div>
<div class="field label border" style="margin-top: 5px; margin-bottom: 10px;">
2024-06-18 01:10:59 -04:00
<input type="text" id="msg">
2024-06-17 18:27:43 -04:00
<label>Message (if needed)</label>
</div>
2024-06-18 01:10:59 -04:00
<button class="responsive" onclick="processSend()" style="margin-bottom: 20px;">
2024-06-17 18:27:43 -04:00
<i>rocket</i>
<span>Send</span>
</button>
<hr>
2024-06-18 01:10:59 -04:00
<h6>Logs</h6>
<p id="log"></p>
<script src="index.js"></script>
2024-06-17 18:27:43 -04:00
</body>
2024-06-18 01:10:59 -04:00
</html>