-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (64 loc) · 3.29 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
<!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>
<!-- Bootstrap css -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<!-- Bootstrap icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<!-- Css animation -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
</head>
<body>
<!-- Main Container -->
<div class="container text-center position-absolute top-50 start-50 translate-middle">
<h2>Password Generator</h2>
<!-- Password inputbox -->
<div class="password__inputbox">
<input type="text" disabled>
<!-- <i class=" animate__animated animate__bounceIn" data-toggle="tooltip" title="Copy to C" ><i class="bi bi-copy"></i> </i> -->
<i class="bi bi-copy animate__animated animate__bounceIn animate__infinite animate__slower" data-toggle="tooltip" title="Copy to clipboard"></i>
</div>
<!-- Password indicator -->
<div class="password__indicator"></div>
<!-- Password range -->
<div class="password__length">
<div class="password__details">
<div class="password__title ">Password Length</div>
<span></span>
</div>
<input class="form-range range-slider" type="range" min="1" max="20" value="5" step="1">
</div>
<!-- Password Settings -->
<div class="password__settings">
<div class="password__title">Password Settings</div>
<ul class="password__options form-check p-2 mx-auto ">
<li class="password__option">
<input class="ui-checkbox" type="checkbox" id="lowercase" checked >
<label for="lowercase">Lowercase (a-z)</label>
</li>
<li class="password__option">
<input class="ui-checkbox" type="checkbox" id="uppercase" >
<label for="uppercase">Uppercase (A-Z)</label>
</li>
<li class="password__option">
<input class="ui-checkbox" type="checkbox" id="numbers" >
<label for="numbers">Numbers (0-9)</label>
</li>
<li class="password__option">
<input class="ui-checkbox" type="checkbox" id="symbols" >
<label for="lowercase">Symbols (!-$^+)</label>
</li>
</ul>
</div>
<!-- Generate Button -->
<button class="password__button"><span>Generate Password</span></button>
</div>
<script src="script.js"></script>
</body>
</html>