-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (93 loc) · 4.76 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
89
90
91
92
93
94
95
96
97
98
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kansas Dynamics Password Generator</title>
<meta name="description" content="KansasDynamics Password Generator: Create a random and secure password" />
<meta name="keywords" content="passwords, random, dynamic generation" />
<meta name="author" content="Kansas Dynamics" />
<link href="https://kansasdynamics.com/wp-content/uploads/kansasdynamics_icon_color.png" rel="shortcut icon">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href='//fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900%7CRubik:100,200,300,400,500,600,700,800,900%7CPoppins:100,200,300,400,500,600,700,800,900%7CNoto+Sans:100,200,300,400,500,600,700,800,900%7CUbuntu:100,200,300,400,500,600,700,800,900%7CNunito+Sans:100,200,300,400,500,600,700,800,900&subset=latin,latin-ext' type='text/css' media='all' rel='stylesheet' />
</head>
<body class="bg-body-tertiary">
<div class="container">
<main>
<div class="row py-5 text-center">
<img class="d-block mx-auto mb-4" src="img/kansasdynamics_logo_color.png" alt="Kansas Dynamics logo">
<h2 id="headline">Password Generator</h2>
<p class="lead">Randomly generate a secure password</p>
</div>
<div class="row g-5">
<div class="col">
<form class="" novalidate>
<div class="col-12">
<label class="toggle container-fluid">
<input class="toggle-checkbox" type="checkbox" id="uppercase" checked>
<div class="toggle-switch"></div>
<span class="toggle-label">Uppercase Letters ( A-Z )</span>
</label>
</div>
<div class="col-12">
<label class="toggle container-fluid">
<input class="toggle-checkbox" type="checkbox" id="lowercase">
<div class="toggle-switch"></div>
<span class="toggle-label">Lowercase Letters ( a-z )</span>
</label>
</div>
<div class="col-12">
<label class="toggle container-fluid">
<input class="toggle-checkbox" type="checkbox" id="numbers" checked>
<div class="toggle-switch"></div>
<span class="toggle-label">Numbers ( 0-9 )</span>
</label>
</div>
<div class="col-12">
<label class="toggle container-fluid">
<input class="toggle-checkbox" type="checkbox" id="symbols">
<div class="toggle-switch"></div>
<span class="toggle-label">Symbols ( !@#$% )</span>
</label>
</div>
<div class="col-12">
<label class="toggle container-fluid">
<input type="range" min="5" max="25" step="1" class="form-range" id="passwordLength">
<span class="toggle-label">Password Length ( <span id="rangeValue">15</span> )</span>
</label>
</div>
<div class="col-12">
<label class="toggle container-fluid">
<button class="w-100 btn btn-primary btn-sm" type="submit" id="generatePassword">Generate Password</button>
</label>
</div>
<div class="col-12">
<label class="toggle container-fluid">
<div class="input-group">
<div class="input-group-text" id="copyPassword">Copy</div>
<input type="text" class="form-control" placeholder="New Password" aria-label="Input group example" aria-describedby="copyPassword" id="newPassword">
</div>
</label>
</div>
</form>
</div>
</div>
</main>
<!-- FOOTER -->
<footer class="my-5 pt-5 text-body-secondary text-center text-small">
<p class="kdIcon"><a href="https://kansasdynamics.com" target="_blank"><img src="img/kd_icon.png" id="kdIcon"></a></p>
<p class="mb-1">© 2023 Kansas Dynamics</p>
<ul class="list-inline footer-menu">
<li class="list-inline-item"><a href="https://kansasdynamics.com/terms-and-conditions/" target="_blank">Terms</a></li>
<li class="list-inline-item"><a href="https://kansasdynamics.com/privacy-policy/" target="_blank">Privacy</a></li>
<li class="list-inline-item"><a href="https://kansasdynamics.com/cookies-policy/" target="_blank">Cookies</a></li>
</ul>
</footer>
</div>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>