-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 841 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
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PhysioSE</title>
<link rel="stylesheet" href="node_modules/xel/stylesheets/macos.theme.css">
<link rel="stylesheet" href="styles/custom.css">
<script src="node_modules/xel/xel.min.js"></script>
<script src="dist/subject.js"></script>
<script src="dist/questions.js"></script>
</head>
<body>
<div class="content">
<div>
<form>
<x-input id="subjectID">
<x-icon name="receipt"></x-icon>
<x-label>Student ID</x-label>
</x-input>
<button type="submit">
Continue
</button>
</form>
</div>
</div>
</body>
<script>
const form = document.querySelector('form');
form.addEventListener('submit', createSubject);
form.addEventListener('submit', createQuestionWindow);
</script>
</html>