-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (23 loc) · 1.13 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
<!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">
<link rel="shortcut icon" href="icon@2x.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<title>PPG</title>
</head>
<body>
<div class="m-5">
<p class="font-bold text-6xl">PPG</p>
<p class="text-gray-400">Open-source password generator.</p>
<p class="mt-10 m-1"><label for="gen" class="w-full font-semibold">Generated password</label></p>
<input type="text" id="gen" placeholder="Generated password will go here..." readonly class="w-full m-1">
<p class="font-bold m-1" id="time">Nothing to see here.</p>
<button class="bg-blue-700 text-white py-2 px-4 m-1 font-semibold rounded hover:bg-blue-800" id="gennew">Generate</button>
<button class="bg-blue-700 text-white py-2 px-4 m-1 font-semibold rounded hover:bg-blue-800" id="gencopy">Copy</button>
<p class="mt-5 text-sm text-gray-400 font-semibold">© Owen Magill 2021</p>
</div>
</body>
</html>