-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
52 lines (43 loc) · 1.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<title>DSR Report</title>
<style>
body {
min-width:300px;
min-height:250px;
}
</style>
<script src="lib/jquery-3.6.0.js"></script>
<script src="popup.js"></script>
</head>
<body>
<a href="" id="blank"></a>
<div class="container" align="center">
<div class="row row-cols-1">
<div align="center" class="col gy-3">
<h3>DSR Report | v1.0</h3>
</div>
<div align="center" class="col gy-3">
<h5>Actions</h5>
</div>
<div align="center" class="col gy-1">
<button type="button" class="btn btn-outline-dark" id="report" >Report</button>
<button type="button" class="btn btn-outline-dark" id="history" >View History</button>
</div>
<div align="center" class="col gy-3">
<h5>Shortcuts</h5>
</div>
<div align="center" class="col gy-1">
<button type="button" class="btn btn-outline-dark" id="pvu" >PVU</button>
<button type="button" class="btn btn-outline-dark" id="pcs" >PancakeSwap</button>
</div>
<div align="center" class="col gy-3">
</div>
</div>
</div>
</body>
</html>