-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
45 lines (43 loc) · 1.35 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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="author" lang="cs" content="Michal Tichý [https://github.com/ajda2]">
<link rel="stylesheet" media="all" href="css/style.css" type="text/css">
<script src="popup.js"></script>
</head>
<body>
<form action="#">
<div>
<input type="text" name="password" id="password">
</div>
<div>
<span id="lengthValue"></span> <input type="range" value="25" name="length" id="length" min="5" max="40">
</div>
<div id="settingsButton">Více možností</div>
<div id="settingsHolder">
<div>
<label>
<input type="checkbox" checked name="settingsInvolveNumbers" id="settingsInvolveNumbers">
Čísla
</label>
</div>
<div>
<label>
<input type="checkbox" checked name="settingsInvolveCzechChars" id="settingsInvolveCzechChars">
České znaky
</label>
</div>
<div>
<label>
<input type="checkbox" checked name="settingsInvolveSpecialChars" id="settingsInvolveSpecialChars">
Speciální znaky
</label>
</div>
</div>
<div>
<input type="button" value="Generovat" id="submit">
</div>
</form>
</body>
</html>