-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.95 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="ie=edge" http-equiv="X-UA-Compatible">
<script defer src="script.js">
</script>
<link href="style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="shortcut icon" href="./favicon.png" type="image/x-icon">
<title>Password Generator</title>
</head>
<body>
<div class="container">
<h1 class="title">Password Generator</h1><br>
<br>
<div class="password-display">
<h3 class=" pw" id="passwordDisplay">password</h3><button class="material-icons cpy-btn" id="copy">content_copy</button>
</div><br>
<br>
<br>
<form class="form" id="passwordGeneratorForm" name="passwordGeneratorForm">
<label for="characterAmountNumber">Number Of Characters</label>
<div class="character-amount-container">
<input id="characterAmountRange" max="50" min="1" type="range" value="10"> <input class="number-input" id="characterAmountNumber" max="50" min="1" type="number" value="10">
</div><label for="includeUppercase">Include Uppercase</label> <input id="includeUppercase" type="checkbox"> <label for="includeNumbers">Include Numbers</label> <input id="includeNumbers" type="checkbox"> <label for="includeSymbols">Include Symbols</label> <input id="includeSymbols" type="checkbox"><br>
<br>
<button class="btn" id="copy" type="submit">Generate Password</button>
</form>
</br>
</br>
<a href="https://github.com/githubfan/js-password-generator" target="_blank" rel="noopener noreferrer">
<i class="fab fa-github fa-2x" style="color: lightblue;"></i>
</a>
</div>
</body>
</html>