-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 1.18 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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Happy+Monkey&family=Inter&family=Orbitron:wght@400;800&display=swap" rel="stylesheet">
</head>
<body>
<div id="card">
<h1 id="h1-line1">Generate a <div id="h1-line2" >random password</div></h1>
<p id="h2"> Never use a insecure password again. </p>
<button id="generate-btn" onclick="randomPasswordGenerator()">Generate passwords</button>
<hr class="line-breaker">
<div id="password-container">
<button class="password" id="password-el1" onclick="copyFirst()"> </button>
<button class="password" id="password-el2" onclick="copySecond()" > </button>
</div>
<p id="tip" ">Click on the passwords to copy them to clipboard </p>
</div>
<script src="index.js"> </script>
</body>
</html>