-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathchapter2.html
More file actions
21 lines (20 loc) · 919 Bytes
/
chapter2.html
File metadata and controls
21 lines (20 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chapter 2</title>
<script src="../_static/APIWrapper.js"></script>
<script src="../_static/SCORMFunctions.js"></script>
<script src="../_static/auth.js"></script>
</head>
<body onload="loadChapter('chapter2')" onunload="unloadPage()">
<h1>Chapter 2: Uff</h1>
<button onclick="logoutUser()">Logout</button>
<p id="completion-status">Checking completion status...</p>
<button id="complete-button" onclick="completeChapter('chapter2')">Mark this Chapter as Completed</button>
<button id="reset-button" onclick="resetChapter('chapter2')">Reset Progress</button>
<!-- Textbox for user to write and save data -->
<textarea id="chapter-textbox" rows="10" cols="50" placeholder="Write your notes here..."></textarea>
</body>
</html>