-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (39 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>URL Shortener JS</title>
<link rel="stylesheet" type="text/css" href="/styles.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
</head>
<body>
<h1>Link Shortener JS</h1>
<main class="url-shortener">
<div class="container">
<h2>Enter a URL</h2>
<form id="form">
<input type="text" id="input" value="">
<button id="shorten">Shorten</button>
</form>
<div id="result">
<div id="link"></div>
<button id="copy"></button>
</div>
<div class="recent">
<button id="recent" onclick="renderRecentLinks()">Recent Links</button>
</div>
<div id="recent-url-modal">
<div id="recent-url-content">
<span id="close-recent">X</span>
<h3>Your recent links</h3>
<div id="links"></div>
<button id="clear">Clear Links</button>
</div>
</div>
</div>
</main>
<script src='https://code.jquery.com/jquery-3.1.0.min.js'></script>
<script src="/index.js"></script>
</body>
</html>