-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
67 lines (56 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Generate a Carl Password.">
<meta name="author" content="Carlgo11">
<link rel="apple-touch-icon" href="img/apple-touch-icon/64x64.png" sizes="64x64">
<link rel="apple-touch-icon" href="img/apple-touch-icon/128x128.png" sizes="128x128">
<link rel="apple-touch-icon" href="img/apple-touch-icon/256x256.png" sizes="256x256">
<link rel="icon" href="img/icons/favicon.png" sizes="16x16" type="image/png">
<link rel="icon" href="img/icons/favicon.svg" sizes="any" type="image/svg+xml">
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="css/main.css">
<title>Carl Passwords</title>
</head>
<body>
<h1 id="title">Need a Carl Password?</h1>
<main>
<!-- Options -->
<div class="options">
<div>
<input checked="" id="l" type="checkbox">
<label for="l">Lowercase letters</label>
<input checked="" id="u" type="checkbox">
<label for="u">Uppercase letters</label>
<input checked="" id="d" type="checkbox">
<label for="d">Numbers</label>
<input checked="" id="s" type="checkbox">
<label for="s">Special characters</label>
<input id="un" type="checkbox">
<label for="un">Unicode characters</label>
<input id="sp" type="checkbox">
<label for="sp">Spaces</label>
</div>
<label for="length">Length:</label>
<input id="length" min="1" type="number" value="72">
<button autofocus="" id="generate">Generate</button>
</div>
<!-- Password -->
<div id="passwordDisplay">
<label for="password">New password:</label>
<div id="passwordContainer">
<!-- Password field -->
<input id="password" type="text">
<!-- Copy button -->
<button id="copy"><svg viewBox="0 0 16 16"><path d="M4 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V2Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H6ZM2 5a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1h1v1a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1v1H2Z"/></svg></button>
</div>
</div>
</main>
<footer>
Created by <a href="https://carlgo11.com/">Carlgo11</a>
</footer>
<script src="js/main.js" defer></script>
</body>
</html>