-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLesson1.html
More file actions
95 lines (91 loc) · 4.01 KB
/
Lesson1.html
File metadata and controls
95 lines (91 loc) · 4.01 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=utf-8 />
<!--
Name: Joshua Caravetta
E-mail: [email protected]
School: Umass Lowell
Class: 91.61 GUI Programming 2
Date of Creation: 1/23/2014
-->
<title> Easy Circuit » Lesson 1 </title>
<!-- List of javascripts needed for this page. -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/mathjs/0.15.0/math.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<script src="js/lib/underscore.js"></script>
<script src="js/lib/backbone.js"></script>
<script data-main="js/CircuitBuildingTool/main.js" src="js/lib/require.js"></script>
<script>
require.config({
urlArgs: "bust=" + (new Date()).getTime()
});
</script>
<script src="js/UserAccounts/Login.js"></script>
<script src="js/UserAccounts/Logout.js"></script>
<script src="js/UserAccounts/sessioncheck.js"></script>
<script src="js/Nav.js"></script>
<script type="text/javascript" src="js/Lesson/Lesson.js"></script>
<!-- List of css needed for this page. -->
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/CircuitBuildingTool/CircuitBuilder.css">
<link rel="stylesheet" href="css/Lesson/Lesson.css">
</head>
<body>
<div id="tester">
<canvas id="canvas" width="650" height="440"></canvas>
</div>
<div class="cover-container">
<div id="nav-background">
<div id="nav-bar">
<ul class="nav masthead-nav">
<li><a class='navtext' href="Lessons.html">Lessons</a></li>
<li><a class='navtext' href="#">Circuit Builder</a></li>
</ul>
</div>
<div id="user-acount">
<p id="log">Login</p>
<p id="space">or</p>
<p id="reg">Register</p>
<p id="username"></p>
<p id='logout'>Logout</p>
</div>
</div>
</div>
<div id="logo"><h1>EASY CIRCUIT</h1></div>
<img id="paper" src="images/paper1.png" width="304" height="228">
<img id="lesson" src="images/lesson1.png" width="304" height="228">
<div id="back"></div>
<div id="login" title="Login">
<p id="user_name_tag">User Name:</p>
<input id="user_login" type="text" name="user_login">
<p id="user_password_tag">Password:</p>
<input id="user_password" type="password" name="user_password">
<input id="Cancel" type="button" value="Cancel">
<input id="Login" type="button" value="Login">
</div>
<div id="regis" title="Create an Account">
<input id="first_name" type="text" name="first_name">
<input id="last_name" type="text" name="last_name">
<input id="user_name" type="text" name="user_name">
<input id="email" type="text" name="email">
<input id="password" type="text" name="password">
</div>
<div id="lessonbox">
<div id="placeholder"></div>
<div id='wrapper'>
<ul id="pagenumber">
<li> 1 </li>
<li> 2 </li>
<li> 3 </li>
</ul>
</div>
<input class="jcarousel-control-prev" type="button" value="‹ Prev">
<input class="jcarousel-control-next" type="button" value="Next ›">
</div>
<div id="footer-background">
</div>
</body>
</html>