-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimeRecap.html
More file actions
27 lines (27 loc) · 903 Bytes
/
timeRecap.html
File metadata and controls
27 lines (27 loc) · 903 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
<html>
<head>
<title>Time Recap</title>
<meta charset="UTF-8">
<script>
window.nodeRequire = require;
delete window.require;
delete window.exports;
delete window.module;
</script>
<script type="text/javascript" src="./js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="./js/pouchdb-6.2.0.min.js"></script>
<!--<link href="css/milligram.css" rel="stylesheet">-->
<link href="css/styles.css" rel="stylesheet">
<body class="">
<div class="topbar">
<button class="button1 button2" id="Combine">Combine</button>
<button class="button1 button2" id="Save">Save</button>
<button class="button1 button2" id="Delete">Delete</button>
<button class="button1 button2 floatRight" id="dashboard">Dashboard</button>
</div>
<div id="body"></div>
</body>
<script>
nodeRequire('./timeRecap.js')
</script>
</html>