-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (47 loc) · 1.95 KB
/
index.html
File metadata and controls
51 lines (47 loc) · 1.95 KB
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="de">
<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">
<title>Passwortgenerator</title>
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<h2 class="title">Passwortgenerator</h2>
<div class="result">
<div class="result__info right">Hier klicken zum Kopieren</div>
<div class="result__info left">Kopiert!</div>
<div class="result__viewbox" id="result">GENERIEREN</div>
<button id="copy-btn" style="--x: 0; --y: 0"><i class="far fa-copy"></i></button>
</div>
<div class="length range__slider" data-min="4" data-max="32">
<div class="length__title field-title" data-length='0'>Länge:</div>
<input id="slider" type="range" min="4" max="32" value="16" />
</div>
<div class="settings">
<span class="settings__title field-title">Einstellungen</span>
<div class="setting">
<input type="checkbox" id="uppercase" checked />
<label for="uppercase">Grossbuchstaben</label>
</div>
<div class="setting">
<input type="checkbox" id="lowercase" checked />
<label for="lowercase">Kleinbuchstaben</label>
</div>
<div class="setting">
<input type="checkbox" id="number" checked />
<label for="number">Nummern</label>
</div>
<div class="setting">
<input type="checkbox" id="symbol" />
<label for="symbol">Symbole</label>
</div>
</div>
<button class="btn generate" id="generate">Passwort generieren</button>
</div>
<script src="./main.js"></script>
</body>
</html>