-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 1.16 KB
/
index.html
File metadata and controls
40 lines (36 loc) · 1.16 KB
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
<!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>Link Saver</title>
<link rel="stylesheet" href="style.css">
<script src="./background.js"></script>
<script defer src="./popup.js"></script>
</head>
<body>
<h2 class="title" align="center">QuickLink</h2>
<p>Add a link to store.</p>
<form id="user-input" method="POST" enctype="multipart/form-data">
<input type="text" name="quick-link-key" placeholder="Quick Text" required/><br/>
<input type="text" name="quick-link-url" placeholder="URL" required/><br/>
<div id="alert-success">
<p>Link added successfully.</p>
</div>
<div id="alert-error">
<p>Something went wrong</p>
</div>
<button type="submit" id="submit-button">Create</button>
</form>
<br/>
<a id="get-links">View Storage</a><br/>
<div id="storage-container"></div>
<br/>
<div class="footer-basic">
<footer>
<p class="copyright">ShubhamSharma2003 © 2023</p>
</footer>
</div>
</body>
</html>