-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 894 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Generator Extension</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1>PWGen</h1>
<p id="message">Fill in the following details:</p>
<form>
<label for="website">Website:</label><br>
<input type="text" id="website" name="website"><br>
<label for="email">Email:</label><br>
<input type="text" id="email" name="email"><br>
<label for="key">Key:</label><br>
<input type="password" id="key" name="key"><br><br>
<button type="button" id="copy-password">Copy Password</button>
</form>
<!-- Ensure to include your script using the appropriate CSP -->
<script src="./main.js" type="module"></script>
</body>
</html>