-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
41 lines (34 loc) · 1.34 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
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/spectre.min.css">
<link rel="stylesheet" href="css/spectre-exp.min.css">
<link rel="stylesheet" href="css/spectre-icons.min.css">
</head>
<body>
<div style="width: 420px; height:130px; padding-top:20px; padding-left:20px; padding-right:20px;">
<div class="input-group">
<input type="url" class="form-input" id="result" value="">
<button class="btn btn-primary input-group-btn" id="btn">
<i class="icon icon-copy"></i>
</button>
</div>
<div class="text-center text-small text-success" style="padding-top: 5px;">
<p id="msg"></p>
</div>
<div class="text-center text-tiny" style="padding-top: 0px;">
<p><span class="text-primary" id="totalUrl"></span> URLs</p>
</div>
</div>
<footer>
<div class="text-center">
<p class="text-tiny">URLite v0.2.7 - by <a class="text-primary" href="https://github.com/SamuelBagattin"
target="_blank">Samuel</a> &
<a class="text-primary" href="https://github.com/mnett0" target="_blank">Médéric</a></p>
</div>
</footer>
<script src='js/config.js'></script>
<script src="js/popup.js"></script>
</body>
</html>