-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLessons.html
More file actions
75 lines (70 loc) · 3.33 KB
/
Lessons.html
File metadata and controls
75 lines (70 loc) · 3.33 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
<!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 Plan </title>
<!-- These are the 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/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>
<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/Lesson/Lesson.css">
</head>
<body>
<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="paperlesson" src="images/paperlesson.png" width="304" height="228">
<img id="lessonplan" src="images/lessonplan.png" width="304" height="228">
<img id="lessonone" src="images/one.png" width="304" height="228">
<img id="lessononetext" src="images/over.png" width="304" height="228">
<img id="lessontwo" src="images/two.png" width="304" height="228">
<img id="lessontwotext" src="images/soon.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="footer-background">
</div>
</body>
</html>