-
Notifications
You must be signed in to change notification settings - Fork 1
/
Randompassword.HTML
44 lines (32 loc) · 1.25 KB
/
Randompassword.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>RandomPassword Genarator</title>
<link rel="stylesheet" href="RandomPassword.css">
</head>
<body>
<div class="Password">
<h1> Passowrd Generator </h1>
<h3 class="Psw" id="result">Passowrd</h3>
<form action="" class="Form" id="PasswordGenarator">
<label for="">Number of Characters</label>
<div>
<input type="range" min="1" max="50" value="10" id="NumberRange">
<input type="number" min="1" max="50" value="10" id="RangeNumberCheckbox">
</div>
<label for="">Symbol</label>
<input type="checkbox" id="Symbol">
<label for="">UpperCase</label>
<input type="checkbox" id="UpperCase">
<label for="">LowerCase</label>
<input type="checkbox" id="LowerCase">
<label for="">Digit</label>
<input type="checkbox" id="Digit">
<button type="submit" class="btn"> Generat Passowrd</button>
</form>
</div>
<script src="RandomPassword.js"> </script>
</body>
</html>