-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="shortcut icon" type="image" href="/favicon.ico" />
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">
<script type="text/javascript" src="main.js"></script>
<title>Password Generator</title>
</head>
<body>
<div class="home-page">
<div class="user-interface">
<div>
<p>
*****************************************
</p>
<p>
* . [●●●●] PwdGen ― v0.0.2 | 03-2023 . *
</p>
<p>
* . --------------------Github: @Nekall *
</p>
<p>
*****************************************
</p>
</div>
<div>
<input type="checkbox" id="special" name="special" checked>
<label for="scales">Special characters</label>
</div>
<div>
<input type="checkbox" id="capital" name="capital" checked>
<label for="scales">Capital letters</label>
</div>
<div>
<input type="checkbox" id="number" name="number">
<label for="scales">Without numbers</label>
</div>
<button class="btn" type="button" name="button" onclick="generatePassword()">Generate</button>
<span class="password-result" id="password" onclick="copyPassword()">Your password here</span>
</div>
</div>
</body>
</html>