-
Notifications
You must be signed in to change notification settings - Fork 70
/
terminal.php
33 lines (30 loc) · 867 Bytes
/
terminal.php
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
<!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">Terminal</h2>
</div>
<div class="card-body">
<center><span>The interaction with the terminal is done by <b>Shell In A Box</b>. You must have it installed on the host to use it.</span><br><br></center>
<?php
echo "<iframe class='iframe-terminal' src='https://".$host = $_SESSION["host"].":4200/'></iframe>";
?>
</div>
</div>
<?php
include("assets/includes/footer.php")
?>
</body>
</html>