-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
39 lines (38 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/popup.css">
<script src="libs/jquery-3.3.1.min.js"></script>
<script src="libs/popper.min.js"></script>
<script src="libs/bootstrap.min.js"></script>
<script src="functions/popup_button_action.js"></script>
</head>
<body>
<div class="card" style="width: 18rem; background-color: aliceblue">
<img class="card-img-top" src="resources/icon_enlarged.png" alt="Card image cap">
<div class="card-body">
<div style="text-align: center;"><h5 class="card-title font-weight-bold" style="color: steelblue;">Find your coupons</h5></div>
<div class="input-group ">
<input type="text" class="form-control" placeholder="Product name" id="searchField" aria-label="Product name" aria-describedby="basic-addon2">
<div class="input-group-append">
<button class="btn btn-outline-secondary" type="button" id="searchBtn" style="background-color: skyblue">Search</button>
</div>
</div>
</div>
<!-- to disable the history feature simply set the css class of the following div to invisible -->
<div class="card visible" id="historyTab" style="max-width: 18rem;">
<div class="card-header" style="height:40px;padding: 7px 10px 7px 20px;">History</div>
<div class="list-group text-info" id="histories" style="max-height: 50px;margin-bottom: 148px;">
<a href="#" class="list-group-item list-group-item-action disabled">No recent activity</a>
<a href="#" class="list-group-item list-group-item-action disabled">No recent activity</a>
<a href="#" class="list-group-item list-group-item-action disabled">No recent activity</a>
<a href="#" class="list-group-item list-group-item-action disabled">No recent activity</a>
<a href="#" class="list-group-item list-group-item-action disabled">No recent activity</a>
</div>
</div>
</div>
</body>
</html>