-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Password Generator</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1 id="line1">Generate a</h1>
<h1 id="line2">random password</h1>
<p>Never use an insecure password again.</p>
<button id="generate" onclick="generate()">Generate passwords</button>
<label for="len" id="label">-</label>
<select name="len" id="len">
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
</select>
<button id="numbers" onclick="number()">Numbers</button>
<button id="symbols" onclick="symbol()">Symbols</button>
<p id="line"></p>
<button id="password1" onclick="copy1()">-</button>
<button id="password2" onclick="copy2()">-</button>
<script src="index.js"></script>
</body>
</html>