-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnote-taking.html
76 lines (52 loc) · 2.34 KB
/
note-taking.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *;**script-src 'self' fonts.js 'unsafe-inline' 'unsafe-eval';** ">-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="popupstyle.css">
<script type=text/javascript src="note-taking.js"></script>
<script type=text/javascript src="fonts.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/ui/4.8.0/firebase-ui-auth.js"></script>
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/4.8.0/firebase-ui-auth.css" />
<script src="https://www.gstatic.com/firebasejs/8.6.2/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.2/firebase-database.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<!--<link
rel="license"
href="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.min.js"
/>-->
</head>
<body class="note-taking">
<div id="back">
<button id = "backbutton">
back
</button>
</div>
<div id="documentname">
<h3 style="text-align:center;"><span id="docname"></span></h3>
</div>
<div id="close">
<!--this is the edit button that can be added to already
time-stamped notes to edit them
<button><i class="fas fa-edit"></i></button>
-->
<button><i class="far fa-window-close fa-lg" id="closebutton"></i></button>
</div>
<div id="add">
<button><i class="far fa-plus-square fa-lg" id="addbutton"></i></button>
</div>
<div id="noteboxhead">
<textarea id="notebox" rows="10" cols="30"></textarea>
<input id="submit" src="images/submit-button.png" alt="submit-note" type="image">
</div>
<div id="alldocs">
<h2 id="documents"></h2>
</div>
</body>
</html>