-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
33 lines (32 loc) · 1.47 KB
/
popup.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
<!doctype html>
<html>
<head>
<title>Wut.link URL Shortener Chrome Extension</title>
<link href="fonts.css" rel="stylesheet" type="text/css">
<link href="popup.css" rel="stylesheet" type="text/css">
<script src="build/all.min.js"></script>
</head>
<body>
<div class="formFields">
<label for="urlField">Link to</label><input type="url" placeholder="" id="urlField" name="url" />
<label for="activationDateField">Activate on (optional)</label><input type="text" id="activationDateField" name="activateDate" placeholder="yyyy/mm/dd" />
<label for="deactivationDateField">Deactivate on (optional)</label><input type="text" id="deactivationDateField" name="deactivateDate" placeholder="yyyy/mm/dd" />
</div>
<div class="linkOptions">
<div class="copyAsapContainer">
<input type="checkbox" id="copyAsap" checked><label for="copyAsap">To Clipboard ASAP</label>
</div>
<a id="generateLink" class="generateButton">Create Link</a>
</div>
<div class="linkHolder">
<textarea id="link" tabindex="-1"></textarea>
<div id="copyButton"></div>
</div>
<div class="alertContainer">
<div class="wrapper">
<div class="message">Press the OK button below to close this dialog.</div>
<a id="ok" class="generateButton">OK</a>
</div>
</div>
</body>
</html>