-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
55 lines (55 loc) · 2.02 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
<!doctype html>
<html>
<head>
<title>PHPMyAdmin Extend</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
.table th+th, .table td+td {
display: none;
}
</style>
</head>
<body style="width: 500px;">
<nav class="navbar fixed-top navbar-light bg-light">
<span class="navbar-brand">PHPMyAdmin Extend</span>
</nav>
<div id="content">
<div class="container my-5 py-2">
<div class="row">
<div id="runSearchContainer" class="col-12 align-items-center">
<button id="runSearch" class="btn btn-success" disabled>Run DB Search one table at a time</button>
</div>
<div id="tableContainer" class="col-12" style="display: none;">
<table class="table table-sm table-hover">
<thead>
<tr>
<th>Result</th>
<th>Browse</th>
<th>Delete</th>
</tr>
</thead>
<tbody id="search_results"></tbody>
</table>
<div id="resetContainer" class="navbar-brand" style="display: none;">
<button id="resetButton" class="btn btn-info">Reset</button>
</div>
</div>
</div>
</div>
<nav id="progressBarContainer" class="navbar fixed-bottom navbar-light bg-light" style="display: none;">
<div class="navbar-text" style="width: 100%;">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="1"></div>
</div>
</div>
<div id="retryContainer" class="navbar-brand" style="display: none;">
<button id="tryAgain" class="btn btn-warning">Try Again</button>
</div>
</nav>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/popup.js"></script>
</body>
</html>