-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
65 lines (61 loc) · 2.15 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
58
59
60
61
62
63
64
65
<!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>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="header-left">
<p class="color-1">Create a strong password</p>
<h1>Password Generator</h1>
<p class="color-2">Try it FREE</p>
</div>
<div class="header-right">
<button class="btn">
<img src="image/icon-github.svg" alt="">
<span>View on GitHub</span>
</button>
</div>
</header>
<div class="container">
<div class="content">
<div class="label">
<p>Length</p>
<p>Digits</p>
<p>Capitals</p>
<p>Symbols</p>
</div>
<div class="inputs">
<input type="range" min="6" max="25" value="15" id="length">
<input type="range" min="0" max="10" value="5" id="digits">
<input type="range" min="0" max="10" value="5" id="capitals">
<input type="range" min="0" max="5" value="2" id="symbols">
</div>
<div class="num">
<p id="length-value">15</p>
<p id="digits-value">05</p>
<p id="capitals-value">05</p>
<p id="symbols-value">02</p>
</div>
</div>
<div class="output">
<textarea id="textarea" readonly placeholder="-"></textarea>
</div>
<div class="storang">
<div class="storang-value"></div>
</div>
<div class="btns">
<button class="copy">Copy</button>
<button class="generate">Generate</button>
</div>
</div>
<footer>
<p class="footer-txt">Made with 💙 by <a href="https://github.com/Mhyar-nsi" target="_blank">Mahyar</a></p>
</footer>
<script src="js/script.js"></script>
</body>
</html>