-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (34 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.4">
<title>JSrandom</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
<link rel="icon" href="JSrandomlogo.png">
</head>
<body>
<br><div style="text-align: center; margin-left: auto; margin-right: auto">
<img src="JSrandomlogo.png" alt="JSrandom logo">
</div>
<h1 id="title" style="text-align: center; margin-left: auto; margin-right: auto ">A random password generator made with Javascript</h1>
<div class="divs">
<label>Password length:</label><br>
<input type="number" id="Length" alt="Put here the length of the password you want to generate"><br>
<label>Lowercase</label>
<input id="lower" class="check" type="checkbox" alt="Check this if you want to include lowercase characters"><br>
<label>Uppercase</label>
<input id="upper" class="check" type="checkbox" alt="Check this if you want to include uppercase characters"><br>
<label>Symbols</label>
<input id="symb" class="check" type="checkbox" style="margin-left: 23px;" alt="Check this if you want to include symbols"><br>
<label>Numbers</label>
<input id="numb" class="check" type="checkbox" style="margin-left: 18px;" alt="Check this if you want to include numbers"><br><br>
<button type="submit" id="generate" alt="click here to generate the password"><a>Generate</a></button><br><br>
<span>Generated password:</span><br>
<div id="Password" alt="There you have it, your generated password"></div><br><br>
</div><br><br>
<footer>Check out the repo on Github <a href="https://github.com/Buct0r/JSrandom" style="color: blue;">here</a></footer>
<script src="index.js"></script>
</body>
</html>