forked from Mr-DJ/biopass-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoopup.html
66 lines (53 loc) · 1.63 KB
/
poopup.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<html>
<head>
<style>
html{
background-color: antiquewhite;
border-radius: 20px;
}
button[type="submit"] {
background-color: green;
color: white;
border-radius: 20px;
padding: 10px 20px;
border: none;
cursor: pointer;
margin-top: 10px;
}
button[type="reset"] {
background-color: red;
color: white;
border-radius: 20px;
padding: 10px 20px;
border: none;
cursor: pointer;
margin-top: 10px;
}
input[type="text"], input[type="password"] {
border-radius: 20px;
border: 2px solid rgb(43, 103, 233);
padding: 10px;
}
.shrivardan {
display: none;
}
</style>
</head>
<body>
<form class="shrivardan">
<div>
<label for="username">Username:</label>
<input type="text" id="username" name="username">
</div>
<div>
<label for="password">Password:</label>
<input type="password" id="password" name="password">
</div>
<div>
<button type="submit">Save</button>
<button type="reset">Cancel</button>
</div>
</form>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>