Added frontend 2
This commit is contained in:
parent
f9708897aa
commit
02f0330226
1 changed files with 49 additions and 0 deletions
49
front/index.html
Normal file
49
front/index.html
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
<!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>
|
Reference in a new issue