-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
31 lines (27 loc) · 996 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html>
<body>
<nav>
<!--Google Auth buttons-->
<button id="authorize_button" onclick="handleAuthClick()">Authorize</button>
<button id="signout_button" onclick="handleSignoutClick()">Sign Out</button>
</nav>
<div class="container">
<div id="sourcecode" class="col">
<p>Write scheme code here...</p>
<textarea id="code"></textarea>
</div>
<div id="bytecode" class="col">
<p>get compiled bytecode here...</p>
<textarea id="code2"></textarea>
</div>
<div id="output" class="col">
<p>and see output here!</p>
<main id="interactions" role="log" aria-live="assertive"></main>
</div>
</div>
<div id="files"></div>
<script src="build/example.js"></script>
<script async defer src="https://apis.google.com/js/api.js" onload="gapiLoaded()"></script>
<script async defer src="https://accounts.google.com/gsi/client" onload="gisLoaded()"></script>
</body>
</html>