-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Night Cipher</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Night Cipher</h1>
<form class="form">
<label for="length">Length:</label>
<input type="number" id="length" name="length" min="4" max="20" value="8">
<br>
<label class="checkbox-label">
<input type="checkbox" id="uppercase" name="uppercase" checked>
<span>Uppercase</span>
</label>
<label class="checkbox-label">
<input type="checkbox" id="lowercase" name="lowercase" checked>
<span>Lowercase</span>
</label>
<label class="checkbox-label">
<input type="checkbox" id="numbers" name="numbers" checked>
<span>Numbers</span>
</label>
<label class="checkbox-label">
<input type="checkbox" id="symbols" name="symbols" checked>
<span>Symbols</span>
</label>
<button type="button" id="generate">Generate Password</button>
</form>
<div class="output">
<h2>Your Password:</h2>
<p id="password"></p>
</div>
<p class="warning">
Warning: The author is not responsible for any damages caused by using this web app.
</p>
</div>
<script src="script.js"></script>
</body>
</html>