-
Notifications
You must be signed in to change notification settings - Fork 0
/
pg.html
86 lines (68 loc) · 3.02 KB
/
pg.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
<!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>
<meta name="description"
content="Secure-PGM is a simple password manager that helps you to generate strong passwords, check the strength of your passwords, and store your passwords securely.">
<link rel="apple-touch-icon" sizes="180x180" href="../Resources/favicon//apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../Resources/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../Resources/favicon/favicon-16x16.png">
<link rel="stylesheet" href="../styles/index.css">
<link rel="stylesheet" href="../styles/pg.css">
<script src="../scripts/pg.js" defer></script>
</head>
<body>
<div class="pattern"></div>
<div class="container">
<header>
<h1>Secure PGM</h1>
</header>
<main>
<h2>Generate a Strong Password</h2>
<div id="customAlertModal" class="modal">
<div class="modal-content">
<p id="customAlertMessage"></p>
<button id="customAlertButton">OK</button>
</div>
</div>
<div class="options">
<label for="upperCase">UpperCase
<input type="checkbox" name="upperCase" id="upperCase">
</label>
<label for="lowerCase">LowerCase
<input type="checkbox" name="lowerCase" id="lowerCase">
</label>
<label for="numbers">Numbers
<input type="checkbox" name="numbers" id="numbers">
</label>
<label for="symbols">Symbols
<input type="checkbox" name="symbols" id="symbols">
</label>
<label for="length">Length
<input type="range" name="length" id="length" min="8" max="120" value="8">
<span id="lengthValue">8</span>
</label>
<label for="allCheck">All Check
<input type="checkbox" name="allCheck" id="allCheck">
</label>
</div>
<button id="generate">Generate</button>
<div id="result"></div>
<button id="copy">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path d="M0 0h24v24H0z" fill="none" />
<path
d="M16 1H4c-1.1 0-1.99.9-1.99 2L2 17h2V3h12V1zm3 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" />
</svg>
</button>
<button><a href="psc.html">Password Strength Checker</a></button>
</main>
<footer class="copyright">
<p>© 2024 Rahid Mondal</p>
<p>v1.1.1</p>
</footer>
</div>
</body>
</html>