-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (56 loc) · 1.97 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
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quick Link</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2 class="title">Q-Links</h2>
<p>Add a new link to storage</p>
<!-- Create Form -->
<form id="user-input" method="POST" enctype="multipart/form-data">
<input type="text" name="quick-link-key" placeholder="Keyword" required /><br />
<input type="text" name="quick-link-url" placeholder="Destination URL" required /><br />
<div id="alert-success"></div>
<div id="alert-error"></div>
<button type="submit" id="submit-button">Create</button>
</form>
<!-- Storage Container -->
<br />
<a id="get-links">View Storage</a><br />
<div id="storage-container"></div>
<!-- Edit Form -->
<form id="edit-form" method="POST" style="display: none;" enctype="multipart/form-data">
<input type="text" name="edit-link-key" placeholder="New Keyword" required /><br />
<input type="text" name="edit-link-url" placeholder="New Destination URL" required /><br />
<button type="submit" id="save-edit-button">Save</button>
<button type="button" id="cancel-edit-button">Cancel</button>
</form>
<!-- Link Template -->
<template id="link-template">
<div class="link-item">
<div class="top">
<span class="link-key"></span>
<div>
<button class="edit-button">Edit</button>
<button class="delete-button">Delete</button>
</div>
</div>
<span class="link-url"></span>
</div>
</template>
<!-- Extension Information -->
<br />
<p>
<small>
Curious when stored data is deleted?
<a href="./information.html">Learn More</a>
</small>
</p>
<!-- Popup JavaScript -->
<script src="popup.js"></script>
</body>
</html>