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
2024-06-17 18:27:43 -04:00

49 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML 5 Boilerplate</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>Get message</option>
<option>🔑 Send message</option>
<option>🔑 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">
<label>Token (if needed)</label>
</div>
<div class="field label border" style="margin-top: 5px; margin-bottom: 10px;">
<input type="text">
<label>Message (if needed)</label>
</div>
<button class="responsive" style="margin-bottom: 20px;">
<i>rocket</i>
<span>Send</span>
</button>
<hr>
<div class="field textarea label border">
<textarea readonly style="width: 100%;" id="log"></textarea>
<label>Logs</label>
</div>
<script>
</script>
</body>
</html>