-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
31 lines (27 loc) · 965 Bytes
/
dashboard.html
File metadata and controls
31 lines (27 loc) · 965 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Active Javascript : Dashboard</title>
<link href="css/main.css" rel="stylesheet" type="text/css" media="all">
<style>
#feditor {
height: 20em;
}
</style>
</head>
<body>
<header>
<h1>Active Javascript</h1>
<div id="tincanid">
<label for="tincanemail">School Email Address</label> <input type="email" id="tincanemail" />
<button id="save">Save</button>
</div>
</header>
<script src="external/jquery-1.11.0.min.js"></script>
<script src="external/TinCanJS/build/tincan-min.js"></script>
<script src="js/tincan_config.js"></script>
<script src="js/dashboard.js" charset="utf-8"></script>
</body>
</html>