forked from echo-lab/live-coding-lecture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.36 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 1.36 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Live Coding Lecture</title>
</head>
<body class="landing-page">
<div id="app">
<h2>Live Coding Lecture Study</h2>
<div class="parent-container">
<div>
<span id="student-email"></span>
<a href="#" id="change-email" hidden>(change)</a>
</div>
<div>
<ul>
<li>
<a href="/pages/student-page.html" target="_blank"
>Student Page</a
>
</li>
<li>
<a href="/pages/instructor.html" target="_blank"
>Instructor Page</a
>
</li>
</ul>
<hr />
<!-- <ul>
<li>
<a href="https://forms.gle/7YjsAnY4KuWSdHgx5" target="_blank"
>Post-lecture Survey</a
>
</li>
<li>
<a href="https://forms.gle/mjKwHaTceKF9cMSf9" target="_blank"
>Closing Survey</a
>
</li>
</ul> -->
</div>
</div>
</div>
<script type="module" src="/src/client/landing-page.js"></script>
</body>
</html>