-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (33 loc) · 934 Bytes
/
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
<!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">
<title> Passwords Generator</title>
<!-- HTML -->
<!-- Custom Styles -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Generate a <span>random password</span></h1>
<p>Never use an insecure password again</p>
<button onclick="generate()">Generate passwords</button>
<!-----
<button id="save" onclick="save()">Save passwords</button>
--->
<hr>
<div id="password1-el"></div>
<!--
<button id="copy1" ondblclick="copy 1()">Copy Password 1</button>
--->
<div id="password2-el"></div>
<!--
<button id="copy2" ondblclick="copy 2()">Copy password 2</button>
guest = 0
<div id="old-passwords"></div>
--->
<!-- Project -->
<script src="main.js"></script>
</body>
</html>