-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (52 loc) · 2.5 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!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>Password Generator</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,500;0,700;1,100;1,200;1,300;1,500&display=swap" rel="stylesheet">
<!-- Stylesheet -->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<main>
<section class="container">
<section class="hero">
<h1>Generate a <span class="otherColor lineBreak">random password</span></h1>
<p>Never use an insecure password again.</p>
<section class="options">
<div>
<button id="button-el">Generate Passwords</button>
</div>
<div class="opChoices">
<label for="passwordLength" class="lineBreak">
<input type="text" id="passwordLength" class="buttonStyling" name="passwordLength" placeholder="Enter Number"> Password Length
</label>
<label for="numbers" class="lineBreak">
<input type="text" id="numbers" class="buttonStyling" name="numbers" placeholder="Yes/No" > Include Numbers
</label>
<label for="symbols" class="lineBreak">
<input type="text" id="symbols" class="buttonStyling" name="symbols" placeholder="Yes/No" > Include Symbols
</label>
</div>
</section>
<!-- <label for="numbers">
<input type="checkbox" id="numbers" name="numbers" value ="yes" checked> Numbers
</label>
<label for="symbols">
<input type="checkbox" id="symbols" name="symbols" value ="yes" checked> Symbols
</label> -->
</section>
<section class="passwordContainer">
<p id="passwordOne-el" class="buttonStyling"></p>
<p id="passwordTwo-el" class="buttonStyling"></p>
</section>
</section>
</main>
<script src="js/index.js"></script>
</body>
</html>