Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 8450350

Browse files
committed
Bug fix
1 parent 9864a52 commit 8450350

File tree

6 files changed

+31
-48
lines changed

6 files changed

+31
-48
lines changed

assets/css/styles.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
margin-bottom: 1.0em;
33
}
44

5+
.btn {
6+
7+
margin: 5px;
8+
}
9+
510
.zoom-effect {
611
-webkit-transition: 0.6s ease;
712
}
@@ -17,4 +22,4 @@
1722

1823
.filter-button {
1924
margin: 2px;
20-
}
25+
}

assets/includes/functions.php

Lines changed: 0 additions & 40 deletions
This file was deleted.

index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525

2626
<div class="col-xl-6 col-lg-6">
27-
<div class="card card-stats">
27+
<div class="card card-stats zoom-effect">
2828
<div class="card-body">
2929
<div class="row">
3030
<div class="col">
@@ -58,7 +58,7 @@
5858

5959

6060
<div class="col-xl-6 col-lg-6">
61-
<div class="card card-stats">
61+
<div class="card card-stats zoom-effect">
6262
<div class="card-body">
6363
<div class="row">
6464
<div class="col">

run.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
}
4242

4343
$run = $command . " " . $cmd . " " . $target;
44-
echo "<style='color: white'>The following command was executed: <b>" . $run . "</b>";
44+
echo "<style='color: white'>The following command was executed: <b>" . $run . "</b><br><br>";
4545

4646
$ssh->setTimeout(0);
4747

selected-tool.php

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
$avatar = $resultado['avatar'];
2626
$cmd = $resultado['cmd'];
2727
$target = $resultado['target'];
28-
$resume = $resultado['resume']
28+
$resume = $resultado['resume'];
2929
?>
3030

3131
<!-- Page content -->
@@ -225,8 +225,24 @@
225225
<div class="col">
226226
<div class="collapse terminal" id="terminal" >
227227
<div class="card card-body text-white bg-dark">
228-
<h2 class="card-title text-white">Terminal</h2>
228+
229+
230+
<div class="row align-items-center">
231+
<div class="col">
232+
<h2 class="card-title text-white"><i class="ni ni-bold-right"></i> Terminal</h2>
233+
</div>
234+
<div class="col text-right">
235+
<a href="#!" class="btn btn-sm btn-primary"><i class="ni ni-air-baloon text-yellow"></i> How to fix this?</a>
236+
</div>
237+
</div>
238+
239+
229240
<p class="card-text" id="terminal-data"></p>
241+
242+
<div class="row align-items-center" style="justify-content: center;">
243+
<a href="#!" class="btn btn-danger"><i class="ni ni-single-copy-04"></i> Save to reports</a>
244+
</div>
245+
230246
</div>
231247
</div>
232248
</div>

tools-list.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@
1515
<div class="col">
1616
<div class="card shadow">
1717
<div class="card-header bg-transparent">
18-
<h2 class="mb-0">Kali Linux Tools List</h2>
18+
<h2 class="mb-0">Tools List
19+
<button class="btn btn-dark btn-sm float-right" type="button" data-toggle="collapse" data-target="#collapse-filter" style="float: right;">+ Show filters</button>
20+
</h2>
1921

20-
<button class="btn btn-dark" type="button" data-toggle="collapse" data-target="#collapse-filter" style="float: right;">+ Show filters</button>
22+
2123

2224
</div>
2325

0 commit comments

Comments
 (0)