-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.html
28 lines (28 loc) · 1000 Bytes
/
input.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>PassGen</title>
<link rel="stylesheet" href='style.css'>
<link rel="shortcut icon" href="icon96.png">
</head>
<body>
<div class="center">
<input type='range' min='1' max='24' id='length' list="length1" value='10' />
<datalist id='length1'>
<option value='1'>
<option value='8'>
<option value='16'>
<option value='24'>
</datalist>
Password length: <div id='value'></div>
<div>
<label unselectable="on"><input type='checkbox' id='specialchar' />Use special symbols (!@#$% etc.)</label>
<input type='submit' value='Generate!' id = "gen" />
<input id="password" type="text" />
<input type='button' id='copy' value='Copy' /></div>
<div id='warning'></div>
</div>
<script src="scripts.js"></script>
</body>
</html>