-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep1.html
107 lines (105 loc) · 4.16 KB
/
step1.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
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
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>KEDU - The Educational Community and Curriculum Platform</title>
<meta name="description" content="KUBO Education, KEDU for short, is KUBO’s online curriculum platform" />
<meta name="keywords" content="KUBO Robotics, KUBO, KUBO Education, KEDU, Teachers, Students,
Learning Platform">
<script defer src="assets/js/script.js"></script>
<script defer src="assets/js/login.js"></script>
<script defer src="assets/js/lesson.js"></script>
<link href="assets/css/upload.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/images/favicon/site.webmanifest">
<link rel="mask-icon" href="assets/images/favicon/safari-pinned-tab.svg" color="#ffffff">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400" rel="stylesheet">
<script defer src="assets/js/fontawesome-all.js"></script>
</head>
<body>
<header>
<div class="logo">
<a href="dashb.html"><img src="assets/images/kedulogo.png" alt="logo"></a>
</div>
<nav>
<a href="dashb.html" >Dashboard</a>
<a href="lplans.html" class="active">Lesson Plans</a>
<a href="commu.html">Community</a>
<a href="lak.html">Learn KUBO</a>
<div class="dropdown">
<a href="javascript:void(0)" class="dropbtn"><span class="fas fa-caret-down"></span></a>
<div class="dropdown-content">
<a href="lak.html">Introduction to KUBO</a>
<a href="lbv.html">Learn by video</a>
<a href="manuals.html">Manuals</a>
<a href="faq.html">FAQ</a>
</div>
</div>
</nav>
<div class="navright">
<input class="search" placeholder="Search..">
<button><span class="fas fa-search"></span></button>
<div class="dropdown">
<button onclick="myFunprofil()" class="dropprofil"><span class="far fa-user"></span>
<span id="fnUser"></span></button>
<div id="myProfil" class="dropprofil-content" style="right:0;">
<a href="#">My Profil</a>
<a href="index.html">Log Out</a>
</div>
</div>
</div>
</header>
<div class="dash2">
<div class="com">
<div class="column sidelp2">
<h2>Lessons</h2>
<ul>
<li class="tagDropmanu">
<button onclick="window.location.href='upload.html'" class="droppi"
style="font-weight:bold;">Lessonplan</button>
</li>
<li class="tagDropmanu">
<button onclick="myLesson(this)" class="droppi"><span class="fas fa-angle-down">
</span> Lesson 1</button>
<div class="drop-content">
<p><button onclick="">·Step 1</button><br>
<button onclick="">·Step 2</button><br>
<button onclick="">·Step 3</button><br>
<button onclick="">·Step 4</button><br>
<button onclick="">·Step 5</button><br>
</p>
</div>
</li>
<li class="tagDropmanu">
<button onclick="myLesson(this)" class="droppi"><span class="fas fa-angle-down">
</span> Lesson 2</button>
<div class="drop-content">
<p><button onclick="">·Step 1</button><br>
</div>
</li>
<li class="tagDropmanu">
<button onclick="window.location.href='lessondemo.html'" class="droppi">+ add another lesson</button>
<div class="drop-content">
</div>
</li>
</ul>
<button class="add1" onclick="window.location.href='lplans.html'" type="button"
style="font-weight:bold;">UPLOAD</button>
</div>
</div>
</div>
<div class="supperbox2">
<h3>Step 1</h3>
<input class="form-control1" placeholder="Title..."><br>
<label>Description </label><br>
<textarea class="form-control2"></textarea><br>
<button id="upload">Upload picture </button><br>
<button id="addst">+Add another step </button>
</div>
</body>
</html>