-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
32 lines (23 loc) · 1.01 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
29
30
31
32
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet" >
<link rel="manifest" href="/manifest.json">
<title>JPass</title>
</head>
<body>
<div style="width: 450px;">
<h2 class="text-center">JPass</h2>
<input class="form-control" type="text" name="" placeholder="password" id="password" readonly>
<table>
<th><label id="label" class="btn btn-info" disabled>Length</label></th>
<th><input id="length" class="form-control" min="4" max="20" type="number" name="length" placeholder="4"></th>
<th><button id="button1" class="btn btn-warning" type="button" name="gen">Generate</button></th>
<th><button id="button2" class="btn btn-warning" type="button" name="copy">Copy</button></th>
</table>
</div>
</body>
<script src="js/script.js"></script>
</html>