-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (38 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Password generator</title>
</head>
<body>
<div class="center-container">
<div>
<h1 id="title">SafePass🔐</h1>
</div>
<div>
<h4>
Get your stuff safe and try SafePass,
a simple password generator!
</h4>
<hr>
</div>
<div class="center-container">
<h5>How many letters should it include?</h5>
<input id="letters" type="text" placeholder="How many letters?" >
<h5>How many numbers should it include?</h5>
<input id="numbers" type="text" placeholder="How many numbers?" >
<h5>How many symbols should it include?</h5>
<input id="symbols" type="text" placeholder="How many symbols?" ><br>
</div>
<button id="ent">Enter</button><br>
<button id="del">Delete</button>
<h1>⇩</h1>
<div>
<h2 id="res_div">Result</h2>
</div>
</div>
<script src="index.js"></script>
</body>
</html>