-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
106 lines (98 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
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
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
<title>PassGen</title>
</head>
<body>
<!-- INSERT HTML HERE -->
<div class="toggle">
<input type="checkbox" id="toggle" />
<label for="toggle"></label>
</div>
<div class="contain-count">
<center>
<p>This page was viewed</p>
<h1 id="count">0</h1>
<p>times.</p>
</center>
</div>
<div class="container">
<h2>Password Generator</h2>
<div class="result-container">
<span id="result"></span>
<button class="btn" id="clipboard">
<i class="far fa-clipboard"></i>
</button>
</div>
<div class="settings">
<div class="setting">
<label>Password length</label>
<input type="number" id="length" min='0' max='20' value='20' />
</div>
<div class="setting">
<label>Include uppercase letters</label>
<input type="checkbox" id="uppercase" checked />
</div>
<div class="setting">
<label>Include lowercase letters</label>
<input type="checkbox" id="lowercase" checked />
</div>
<div class="setting">
<label>Include numbers</label>
<input type="checkbox" id="numbers" checked />
</div>
<div class="setting">
<label>Include symbols</label>
<input type="checkbox" id="symbols" checked />
</div>
</div>
<button class="btn btn-large" id="generate">
Generate password
</button>
</div>
<!--TOOGLE-->
<!-- SOCIAL PANEL HTML -->
<div class="social-panel-container">
<div class="social-panel">
<p>Created with <i class="fa fa-heart"></i> by
<a href="#">Chiraag Kakar</a></p>
<button class="close-btn"><i class="fas fa-times"></i></button>
<h4>Get in Touch </h4>
<ul>
<li>
<a href="https://twitter.com/0212Chiraag/">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://linkedin.com/in/chiraag-kakar/">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://facebook.com/0212Chiraag/">
<i class="fab fa-facebook"></i>
</a>
</li>
<li>
<a href="https://github.com/chiraag-kakar">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</div>
</div>
<button class="floating-btn">
Get in Touch
</button>
<!-- <div class="floating-text">
<p></p>
</div> -->
<script src="app.js"></script>
</body>
</html>