-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (57 loc) · 2.31 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>My G-Keep</title>
</head>
<body>
<div class="header">
<div class="header__logo"></div>
<div class="header__container">
<h1 class="header__title">My G-Keep</h1>
<h2 class="header__subtitle">Note Manager</h2>
</div>
</div>
<!-- Search and sort fields -->
<div class="actions">
<div class="actions__container">
<input id="search-text" type="text" class="input" placeholder="Search" tabindex="1">
<select name="" id="filter-by" class="dropdown" tabindex="2">
<option value="byEdited">Sort by last edited</option>
<option value="byCreated">Sort by recently created</option>
<option value="alphabetical">Sort alphabetically</option>
</select>
</div>
</div>
<!-- Main container for saved notes -->
<div class="notes-bank"></div>
<!-- Modal Window-->
<div class="modal">
<div class="modal-content">
<div class="modal-header">
<div class="editor__logo"></div><!--
--><h2>Note Editor</h2>
</div>
<div class="modal-body">
<input type="text" placeholder="Name your note..." class="note-title" maxlength="50" tabindex="4"><!--
--><textarea name="" placeholder="Enter your note..." class="note-textarea" tabindex="5"></textarea>
</div>
<div class="modal-footer">
<div class="buttons" id="save-btn" tabindex="5"></div><!--
--><div class="buttons" id="close-btn" tabindex="7"></div>
</div>
</div>
</div>
<!-- Button to add a note -->
<div class="buttons" id="add-btn" tabindex="3"></div>
<!-- Scripts -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.20.1/moment-with-locales.js"></script> -->
<script src="scripts/loaded_libraries/moment.js"></script>
<script src="scripts/loaded_libraries/uuid.js"></script>
<script src="scripts/storage.js"></script>
<script src="scripts/functions.js"></script>
<script src="scripts/app.js"></script>
</body>
</html>