-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
53 lines (50 loc) · 2.38 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/boot-link/bootstrap.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="container rounded-2 m-1">
<form action="">
<h1 class="my-2 fw-bold">Password Generator</h1>
<div class="input-box my-4 position-relative">
<span class="fa fa-clone position-absolute end-0 p-2" id="copytext"></span>
<input type="text" class="w-100 form-control" id="pbox" placeholder="Generate Password" value="">
</div>
<div class="pass-len">
<div class="details">
<label for="range">Password Length</label>
<span id="rangevalue">8</span>
</div>
<input type="range" class="w-100" id="range" min="1" max="30" step="1" value="8">
</div>
<ul class="options row list-unstyled text-center">
<li class="option col-sm-6">
<input type="checkbox" class="" id="lowercase" checked>
<label for="lowercase">lowercase(a-z)</label>
</li>
<li class=" option col-sm-6">
<input type="checkbox" class="" id="uppercase">
<label for="uppercase">uppercase(A-Z)</label>
</li>
<li class=" option col-sm-6">
<input type="checkbox" class="" id="numbers">
<label for="numbers">number(0-9)</label>
</li>
<li class=" option col-sm-6">
<input type="checkbox" class="" id="symbols">
<label for="symbols">symbols(&*#$)</label>
</li>
</ul>
<button type="button" class="btn btn-warning form-control mb-5" id="genpswdbtn">Generate pass</button>
</form>
</div>
<script src="script.js"></script>
</body>
</html>