-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (44 loc) · 1.62 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 = "pl">
<head>
<meta charset="UTF-8">
<title>Password Generator</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div id="Generating">
<div class="header">
<h1>Password Generator</h1>
</div>
<center>
<div id="sec_password">
<div id="box1">Your New Password</div>
<a href="#" class="button" onclick="ChangingText()">Generate Password</a>
</div>
</center>
</div>
<form>
<center>
<label for="length">Length</label>
<input type="text" id="length" name="length" value="8">
</center>
</form>
<label class="container">Include Symbols (e.g. !@#$%&)
<input type="checkbox" checked="checked" id="Symbols">
<span class="checkmark"></span>
</label>
<label class="container">Include Numbers (e.g. 123456)
<input type="checkbox" checked="checked" id="Numbers">
<span class="checkmark"></span>
</label>
<label class="container">Include Lowercase Characters (e.g. abcdefgh)
<input type="checkbox" checked="checked" id="Lower">
<span class="checkmark"></span>
</label>
<label class="container"> Include Uppercase Characters (e.g. ABCDEFGH)
<input type="checkbox" checked="checked" id="Upper">
<span class="checkmark"></span>
</label>
</body>
</html>