-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (36 loc) · 1.9 KB
/
index.html
File metadata and controls
50 lines (36 loc) · 1.9 KB
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
<!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">
<script src="https://kit.fontawesome.com/5e87775eec.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap" rel="stylesheet">
<script defer src="script.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" media="screen and (max-width:1000px)" href="phone.css">
<title>Password Generator</title>
</head>
<body>
<div class="container">
<h3>Password Generator</h3>
<div class="userchoices">
<input type="text" name="password" id="password">
<button id="fclipboard"><i class="fa fa-clipboard"></i></button>
<label for="NumberofCharacters">Number of characters</label>
<input type="number" name="characters" id="NumberofCharacters" min="1" max="40" value="10">
<label for="uppercase">Include uppercase letters</label>
<input type="checkbox" class = "chbox" name="uppercase" id="uppercase">
<label for="lowercase">Include lowercase letters</label>
<input type="checkbox" class = "chbox" name="lowercase" id="lowercase">
<label for="numbers">Include numbers</label>
<input type="checkbox" class = "chbox" name="numbers" id="numbers">
<label for="symbols">Include symbols</label>
<input type="checkbox" class = "chbox" name="symbols" id="symbols">
<input type="text" name="name" id="Uname" placeholder="Enter any word to include in password">
<button id="submit">Generate Password</button>
</div>
</div>
</body>
</html>