-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (95 loc) · 3.03 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
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=, initial-scale=1.0" />
<title>Password-Genarator</title>
<!--style link start-->
<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://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
/>
<link rel="stylesheet" href="style.css" />
<!--style link end-->
</head>
<body>
<!--password container start-->
<div class="password-container py-5 px-5">
<h2>Password Generator</h2>
<!--form start-->
<form action="#" id="frm">
<!--password input-->
<div class="form-group">
<div class="input-group flex-nowrap">
<input
type="text"
id="output"
class="form-control"
placeholder="Your Password"
/>
<span class="input-group-text" id="addon-wrapping"
><i id="btnCopy" class="bi bi-copy"></i
></span>
</div>
</div>
<!--password length input-->
<div class="form-group">
<label for="length">Password Length</label>
<input
type="number"
id="length"
class="form-control"
value="8"
min="6"
/>
</div>
<!--checkbox-->
<div class="form-group">
<label for="number">Numbers</label>
<input type="checkbox" class="form-check-input" id="number" checked />
</div>
<!--checkbox-->
<div class="form-group">
<label for="captial">Captial Letters</label>
<input type="checkbox" class="form-check-input" id="captial" />
</div>
<!--checkbox-->
<div class="form-group">
<label for="small">Small Letters</label>
<input type="checkbox" class="form-check-input" id="small" />
</div>
<!--checkbox-->
<div class="form-group">
<label for="symbol">Symbols</label>
<input type="checkbox" class="form-check-input" id="symbol" />
</div>
<!--checkbox-->
<div class="form-group">
<button type="submit" class="btn">Generate Password</button>
</div>
</form>
<!--form end-->
</div>
<!--password container end-->
<footer>
Designed by
<a href="https://www.linkedin.com/in/iswarya26/" target="_blank"
>Iswarya Sundarrajan</a
>
</footer>
<!--js link start-->
<script src="script.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
<!--js link end-->
</body>
</html>