-
Notifications
You must be signed in to change notification settings - Fork 4
/
popup.html
executable file
·72 lines (62 loc) · 2.63 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
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
67
68
69
70
71
72
<html>
<style type="text/css" >
body {
min-width: 300px;
min-height: 300px;
max-width: 100%;
position: relative;
vertical-align:middle;
}
html {
font-size: 0.8rem;
}
</style>
<head>
<script src="jquery-3.4.1.min.js"></script>
<script src="popup.js"></script>
<lilnk rel="stypesheet" href="popup.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<h5>Fiber Extension <small class="text-muted">Settings and Features</small></h5>
</nav>
<ul class="list-group">
<li class="list-group-item">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="global" value="option1">
<label class="form-check-label" for="global">Enable Fiber Extension</label>
</div>
</li>
<li class="list-group-item">
<h5>Price Adjustment</h5>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="tax" value="option1">
<label class="form-check-label" for="tax">Estimate tax amount</label>
</div>
</li>
<li class="list-group-item">
<h5>Limit</h5>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="budget" value="option1">
<label class="form-check-label" for="budget">Show budget limit</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="card" value="option1">
<label class="form-check-label" for="card">Show credit card limit</label>
</div>
</li>
<li class="list-group-item">
<h5>Time Value Money</h5>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="hours" value="option1">
<label class="form-check-label" for="hours">Show prices as working hours</label>
</div>
</li>
<li class="list-group-item">
<button id="save" type="submit" class="btn btn-primary mb-2">Save</button>
<a href="login.html" id="login" type="submit" class="btn btn-light mb-2">Login with Capital One</a>
<div id="save-alert" class="alert alert-success" role="alert">Settings Saved</div>
</li>
</ul>
</body>
</html>