-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 994 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="KGen generates a strong random password for your accounts on the web.">
<link rel="stylesheet" href="./src/generator.css">
<link rel="stylesheet" href="./src/checkbox.css">
<title>KGen - Your Password Generator</title>
</head>
<body>
<section class="app">
<div class="passview" id="password-container"></div>
<section class="btns-container">
<div class="btn-generate" id="generate">
<p>Generate</p>
</div>
<div class="btn-copy" id="copy">
<p>Copy</p>
</div>
</section>
<section class="settings-container">
<label for="checkbox">Disable special characters</label>
<input type="checkbox" name="checkbox" class="checkbox" id="checkbox">
</section>
</section>
<script type="module" src="./dist/src/js/app.js"></script>
</body>
</html>