forked from lucasfrag/kali-linux-tools-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.php
More file actions
34 lines (30 loc) · 672 Bytes
/
profile.php
File metadata and controls
34 lines (30 loc) · 672 Bytes
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
<!DOCTYPE html>
<html>
<?php
include("assets/includes/head.php");
?>
<body>
<?php
include("assets/includes/header.php")
?>
<!-- Page content -->
<div class="container-fluid mt--7">
<!-- Table -->
<div class="row">
<div class="col">
<div class="card shadow">
<div class="card-header bg-transparent">
<h2 class="mb-0">Profile</h2>
</div>
<div class="card-body">
<?php
// $ssh = getConnectionSSH();
//echo $ssh->exec('');
?>
</div>
</div>
<?php
include("assets/includes/footer.php")
?>
</body>
</html>