-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.htm
42 lines (37 loc) · 1.34 KB
/
popup.htm
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 lang="en-US">
<head>
<meta charset="UTF-8">
<title>Toptal Referral URLs Extension</title>
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<h1>Toptal Referral URLs</h1>
<section id="notification"></section>
<section>
<h3><label for="url">Referral URL for this page</label></h3>
<main>
<textarea title="Referral URL" id="url" disabled></textarea>
<button id="copy">Copy</button>
</main>
</section>
<section>
<h3>
<label for="hashtag">My referral hashtag</label>
<small><a target="_blank" href="https://www.toptal.com/platform/referrals/instructions">(get at the Platform)</a></small>
</h3>
<main>
# <input type="text" id="hashtag" title="My referral hashtag"/>
<button id="save">Save</button>
</main>
</section>
<footer>
<ul>
<li>by <a target="_blank" href="http://freelancer.igorsantos.com.br">Igor Santos</a></li>
<li><a target="_blank" href="https://github.com/igorsantos07/toptal-referral-urls">Source</a></li>
<li><a target="_blank" href="https://github.com/igorsantos07/toptal-referral-urls/issues">Issues</a></li>
</ul>
</footer>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>