Files
gride/client/index.html

21 lines
589 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>gride</title>
<script src="index.js"></script>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="left">
<code contenteditable="true" id="editor"></code>
</div>
<div class="right">
<button onclick="runCode()">Run</button>
<input type="file" id="fileInput" hidden accept=".grnd">
<button for="fileInput" id="buttonTrigger">Choose File</button>
<br>
<code id="console">Output will be shown here, click the run button to run your code!</code>
</div>
</body>
</html>