-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlesson.php
46 lines (28 loc) · 988 Bytes
/
lesson.php
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
<?php
include "common/header.php";
?>
<noscript>This site just doesn't work, period, without JavaScript</noscript>
<h1>Algebra</h1>
<h2>Lesson 1</h2>
<!-- IF LOGGED IN -->
<div id="whiteboardContainer">
<p id="whiteboardContent">Learning happens here.</p>
</div>
<div id="lessonVoice">
</div>
<div class="buttonSet">
<button type="button" class="button left buttonColors" onclick="stepBackward()">Step Back</button>
<button type="button" class="button middle buttonColors">Replay</button>
<button type="button" class="button right buttonColors" onclick="stepForward()">Step Forward</button>
</div>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js?ver=1.3.2'></script>
<script src="js/lessons.js"></script>
<script>
initialize();
</script>
<!-- IF LOGGED OUT -->
<!-- NO ACCESS-->
<?php
include_once "common/sidebar.php";
include_once "common/footer.php";
?>