-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
57 lines (46 loc) · 2.23 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">
<link rel="stylesheet" href="styles/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon.png">
<title>Scrimba | Random Password Generator</title>
</head>
<body>
<main class="flex">
<div class="container">
<div class="upperSection">
<h1 class="title">Generate a<br><span class="title-green">random password</span></h1>
<h2 class="supportingTitle">Never use an insecure password again.</h2>
<span id="password-slider-text">Length: <label for="slider" id="sliderNumber">8</label></span>
<input type="range" min="8" max="12" value="8" class="slider" id="slider" name="slider"></input>
<button class="btn" onclick="getGeneratePasswords()"><i class="fa fa-flash"></i>Generate
passwords</button>
</div>
<hr>
<div class="downSection">
<div class="generatedPassword" id="password1-el"><i class="fa fa-ellipsis-h" aria-hidden="true"></i>
</div>
<div class="generatedPassword" id="password2-el"><i class="fa fa-ellipsis-h" aria-hidden="true"></i>
</div>
<div class="generatedPassword" id="password3-el"><i class="fa fa-ellipsis-h" aria-hidden="true"></i>
</div>
<div class="generatedPassword" id="password4-el"><i class="fa fa-ellipsis-h" aria-hidden="true"></i>
</div>
<div id="letter-main"></div>
</div>
</div>
</main>
<!-- FOOTER -->
<footer>
<div class="attribution">
<span> Project by <a href="https://scrimba.com/learn/learnjavascript/" target="_blank">Scrimba</a>.<br>
Coded by <a href="https://github.com/xdelmo" target="_blank">Emanuele Del Monte</a>.</span>
</div>
</footer>
<script src="scripts/index.js"></script>
</body>
</html>