-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (44 loc) · 2.21 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
<!DOCTYPE HTML>
<html>
<head>
<title>Safe Links URL Extractor/Decoder</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="icon" type="image/png" href="images/icon.png">
</head>
<body class="is-preload">
<!-- Header -->
<header id="header">
<h1>Safe Links URL Extractor/Decoder</h1>
<p>A simple tool for extracting and decoding URL links from safe links :)<br>
Brought to you by <a href="https://github.com/thebadcoder96" target="_blank">thebadcoder</a>.</p>
</header>
<!-- URL Decoder Form -->
<form id="url-decoder-form" method="post" action="#">
<input type="text" name="encodedUrl" id="encodedUrl" placeholder="Paste encoded URL here" />
<input type="button" id="decodeButton" value="Decode" />
</form>
<!-- Decoded URL Display -->
<div id="decoded-url-container">
<a id="decodedUrl" href="javascript:void(0);" target="_blank" class="inactive-link">Decoded URL will appear here</a>
<button id="copyButton">Copy</button>
</div>
<!-- Copy status message -->
<span id="copyStatus" class="copy-status"></span>
<!-- Footer -->
<footer id="footer">
<ul class="icons">
<li><a href="https://www.linkedin.com/in/mishalsalim/" target="_blank" class="icon brands fa-linkedin"><span class="label">LinkedIn</span></a></li>
<li><a href="https://github.com/thebadcoder96" target="_blank" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
<li><a href="https://www.youtube.com/@thebadcoder96" target="_blank" class="icon brands fa-youtube"><span class="label">YouTube</span></a></li>
<li><a href="mailto:mishalksa@hotmail.com" target="_blank" class="icon fa-envelope"><span class="label">Email</span></a></li>
</ul>
<ul class="copyright">
<li>© Mishahal Palakuniyil</li><li>Credits: <a href="https://github.com/thebadcoder96/url-extractor" target="_blank">Github Repo</a> and <a href="http://html5up.net" target="_blank">HTML5 UP</a></li>
</ul>
</footer>
<!-- Scripts -->
<script src="assets/js/main.js"></script>
</body>
</html>