-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (29 loc) · 1.06 KB
/
index.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
<html>
<!-- Main Quill library -->
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<!-- internal scripts -->
<script type="text/javascript" src="views/edit-notes.js"></script>
<!-- css sheets -->
<link rel="stylesheet" type="text/css" href="style.css" />
<body>
<div>
<label>Video URL </label>
<input type="text" id="video-url-input" placeholder="https://www.youtube.com/watch?v=M7lc1UVf-VE">
<button class="editor-btn" id="url-submit-btn">Submit</button>
</div>
<div class="video-container">
<div id="player"></div>
<div id="notes-container"></div>
</div>
<div id="message-div" class="message-alert"></div>
<div class="editor-btn-container">
<button class="editor-btn" id= "save-notes-btn">Save Notes</button>
<button class="editor-btn" id="reset-notes-btn">Reset Notes</button>
</div>
<div id="quill-container">
<div id="quill-div"></div>
</div>
</body>
</html>