-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
29 lines (28 loc) · 1.23 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Generator</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-900 text-white">
<div id="root" class="container mx-auto p-4">
<h1 class="text-2xl font-bold mb-4">Password Generator</h1>
<div class="mb-4">
<label for="length" class="mr-2">Length:</label>
<input type="number" id="length" name="length" min="1" class="p-2 rounded text-black">
</div>
<div class="mb-4">
<input type="checkbox" id="special" name="special" class="mr-2">
<label for="special" class="mr-4">Include special characters</label>
<input type="checkbox" id="numbers" name="numbers" class="mr-2">
<label for="numbers">Include numbers</label>
</div>
<button id="generate" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Generate</button>
<p id="password" class="mt-4"></p>
<button id="copy" class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded hidden">Copy to clipboard</button>
</div>
<script src="popup.js"></script>
</body>
</html>