-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (59 loc) · 2.42 KB
/
index.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Wachtwoord Generator | GD™️</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Importeer styling en scripts -->
<link rel="stylesheet" href="./assets/style.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200">
<script src="./assets/script.js" defer></script>
</head>
<body>
<div class="container">
<h2>Wachtwoord Generator</h2>
<!-- Card opties -->
<div class="card">
<div class="input-box">
<input type="text" disabled>
<span class="material-symbols-rounded">copy_all</span>
</div>
<div class="ww-indicator"></div>
<div class="ww-lengte">
<div class="details">
<label class="title">Wachtwoord Lente</label>
<span></span>
</div>
<input type="range" min="1" max="30" value="15" step="1">
</div>
<div class="ww-instellingen">
<label class="title">Wachtwoord Instellingen</label>
<ul class="opties">
<li class="optie">
<input type="checkbox" id="lowercase" checked>
<label for="lowercase">Kleine letters (a-z)</label>
</li>
<li class="optie">
<input type="checkbox" id="uppercase">
<label for="uppercase">Hoofdletters (A-Z)</label>
</li>
<li class="optie">
<input type="checkbox" id="numbers">
<label for="numbers">Nummers (0-9)</label>
</li>
<li class="optie">
<input type="checkbox" id="symbols">
<label for="symbols">Symbolen (!-$^+)</label>
</li>
<li class="optie">
<input type="checkbox" id="exc-duplicate">
<label for="exc-duplicate">Duplicaat uitsluiten</label>
</li>
</ul>
</div>
<button class="genereer-btn">Genereer Wachtwoord</button>
</div>
</div>
</body>
</html>