-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password-Generator</title>
<link rel="stylesheet" href="Styles/styles.css">
</head>
<body id="particles-js" ontouchstart="">
<section>
<header class="heading">
<h1>Password Generator</h1>
<h2>by Viktor Danchev</h2>
</header>
<form class="password-field">
<span>Copy</span>
<input type="text" placeholder="Password Field" id="textArea" readonly="readonly">
</form>
<article>
<form class="checkboxes-form">
<label class="uppercase-checkbox container">
<input type="checkbox">
Uppercase
</label>
<label class="lowercase-checkbox container">
<input type="checkbox">
Lowercase
</label>
<label class="numbers-checkbox container">
<input type="checkbox">
Numbers
</label>
<label class="symbols-checkbox container">
<input type="checkbox">
Symbols
</label>
</form>
<form class="slider-form">
<label>Password Length:
<span>11</span>
</label>
<input type="range" min="6" max="16" class="slider">
</form>
</article>
<button>Generate</button>
</section>
<script src="Functionality/particles.js"></script>
<script src="Functionality/app.js"></script>
<script src="Functionality/generate.js"></script>
<script src="Functionality/copyText.js"></script>
<script src="Functionality/getPasswordLength.js"></script>
</body>
</html>