-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (51 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<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>Neumorphism Password generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>Password Generator</h2>
<div class="result-container">
<textarea id="PasswordResult"></textarea>
</div>
<div class="settings">
<div class="setting">
<label>Password length</label>
<input type="number" id="Passwordlength" min="4" max="20" value="8" />
</div>
<div class="setting">
<label>Include uppercase letters</label>
<input type="checkbox" id="uppercase" checked />
</div>
<div class="setting">
<label>Include lowercase letters</label>
<input type="checkbox" id="lowercase" checked />
</div>
<div class="setting">
<label>Include numbers</label>
<input type="checkbox" id="numbers" checked />
</div>
<div class="setting">
<label>Include symbols</label>
<input type="checkbox" id="symbols" checked />
</div>
</div>
<div class="buttons">
<button class="btn btn-large" id="generateBtn">
<i class="fas fa-key"></i> Genrate
</button>
<button class="btn" id="clipboardBtn">
<i class="far fa-clipboard"></i> Copy
</button>
</div>
</div>
<script src="script.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script src="https://kit.fontawesome.com/dd8c49730d.js" crossorigin="anonymous"></script>
</body>
</html>