-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (56 loc) · 2.93 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Generator</title>
<link href="https://fonts.googleapis.com/css?family=Patua+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/style.css">
<link rel="shortcut icon" type="image/png" href="assets/images/android-chrome-512x512.png">
</head>
<body>
<div class="container" id="main-container">
<div class="row justify-content-center">
<section class="col-xs-12 col-sm-12 col-md-9 col-lg-7" id="container-content">
<br>
<h1>Password Generator</h1>
<br>
<form id="qualifier-form">
<h5 id="pass-title">Password Length (8-128 characters): </h5>
<input type="number" id="password-length" required></input>
<br>
<br>
<h5 id="pick-title">Pick at least one of the following character-types:</h5>
<br>
<label for="uppercase">Uppercase</label>
<input type="checkbox" id="uppercase"><br>
<label for="lowercase">Lowercase</label>
<input type="checkbox" id="lowercase"><br>
<label for="special">Special Character</label>
<input type="checkbox" id="special"><br>
<label for="numeric">Numeric</label>
<input type="checkbox" id="numeric">
<br>
<br>
<button id="submit-button">Submit</button>
<br>
</form>
<br>
<h2>Your Password:</h2>
<div id="print-password"></div>
<br>
<button id="clear">Clear</button>
</section>
</div>
</div>
<footer class="page-footer font-small blue" id="footer">
<div class="footer-copyright text-center py-3">© Copyright 2020
</div>
</footer>
<script src="script.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>