Files
gride/client/index.html

21 lines
589 B
HTML
Raw Normal View History

2025-09-25 22:16:05 +10:00
<!DOCTYPE html>
<html>
<head>
<title>gride</title>
<script src="index.js"></script>
2025-09-25 09:07:44 +10:00
<link rel="stylesheet" href="index.css">
2025-09-25 22:16:05 +10:00
</head>
<body>
2025-09-25 09:07:44 +10:00
<div class="left">
2025-09-25 11:34:38 +10:00
<code contenteditable="true" id="editor"></code>
2025-09-25 09:07:44 +10:00
</div>
<div class="right">
<button onclick="runCode()">Run</button>
2025-09-25 11:34:38 +10:00
<input type="file" id="fileInput" hidden accept=".grnd">
<button for="fileInput" id="buttonTrigger">Choose File</button>
2025-09-25 09:07:44 +10:00
<br>
<code id="console">Output will be shown here, click the run button to run your code!</code>
</div>
2025-09-25 22:16:05 +10:00
</body>
</html>