-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
88 lines (75 loc) · 3.33 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!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">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded" rel="stylesheet" />
<link rel="stylesheet" href="style.css">
<title>Pass Generator | Harsh</title>
</head>
<body>
<div class="container">
<h2>Pass Generator : </h2>
<div class="wrapper">
<div class="input-box">
<input type="text" disabled>
<span class="material-symbols-rounded">copy_all</span>
</div>
<div class="pass-indicator"></div>
<div class="pass-length">
<div class="details">
<label class="title">Password Length</label>
<span></span>
</div>
<input type="range" min="1" max="30" value="15" step="1">
</div>
<div class="pass-settings">
<label class="title">Pass Settings</label>
<i class="fa fa-linkedin-square" style="font-size:48px;color:rgb(84, 56, 239)"></i>
<ul class="options">
<li class="option">
<input type="checkbox" id="lowercase" checked>
<label for="lowercase">Lowercase (a-z)</label>
</li>
<li class="option">
<input type="checkbox" id="uppercase">
<label for="uppercase">Uppercase (A-Z)</label>
</li>
<li class="option">
<input type="checkbox" id="numbers">
<label for="numbers">Numbers (0-9)</label>
</li>
<li class="option">
<input type="checkbox" id="symbols">
<label for="symbols">Symbols (!-$^+)</label>
</li>
<li class="option">
<input type="checkbox" id="exc-duplicate">
<label for="exc-duplicate">Exclude Duplicate</label>
</li>
<li class="option">
<input type="checkbox" id="spaces">
<label for="spaces">Include Spaces</label>
</li>
</ul>
</div>
<button class="generate-btn">Generate Password</button>
<h4>Created By : Harsh Singh</h4>
<br>
<a href="https://www.linkedin.com/in/singhharsh14/">
<img src="./image/icons8-linkedin.svg" width="92px" height="92px" style="margin-right: 35px;" >
</a>
<a href="https://github.com/HarshSingh21">
<img src="./image/icons8-github.svg" width="92px" height="92px" style="margin-right: 35px;" >
</a>
<!-- <a href="wwww.harshsingh.con"> <button> Harsh</button></a> -->
<a href="https://twitter.com/singh_harsh14">
<img src="./image/icons8-twitter-circled-92.png" width="92px" height="92px" >
</a>
</div>
</div>
<script src="script.js"></script>
<!-- completed date - 22/03/2023 -->
</body>
</html>