-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
51 lines (51 loc) · 1.93 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
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="popup.css" rel="stylesheet">
<link href='https://css.gg/css' rel='stylesheet'>
<script src="popup.js" defer></script>
<title>RandPass</title>
</head>
<body>
<header>
<div class="header-top">
<div>
<img class="header-icon" src="assets/icons/icon-48.png">
<h1 class="header-title">RandPass</h1>
</div>
</div>
</header>
<section class="password-generator">
<div class="password-field">
<input class="generated-password-field" id="password-field" type="text" spellcheck="false">
<div class="buttons">
<div class="tooltip">
<span class="tooltiptext">Generate</span>
<button class="btn generated-password-button" id="generate-button">
<i class="gg-sync rotate" id="generate-icon"></i>
</button>
</div>
<div class="tooltip">
<span class="tooltiptext" id="textTooltip">Copy</span>
<button class="btn generated-password-copy" id="copy-button">
<i class="gg-clipboard" id="copy-icon"></i>
</button>
</div>
</div>
</div>
</section>
<section class="length-slider">
<input class="length-slider" id="length-slider" type="range" min="1" max="50" value="16">
</section>
<section class="length-info">
<span class="length-info-min">1</span>
<span class="length-info-current">Length:
<span class="length-info-current-value" id="length-value">16</span>
</span>
<span class="length-info-max">50</span>
</section>
</body>
</html>