Files
H1502_website/shellinabox.php
Martijn Scheepers a3169ba82b Shell in a box page
2019-07-05 13:38:03 +02:00

23 lines
693 B
PHP

<?php include('partialpage/header.php');?>
<?php include('partialpage/sidebar.php');?>
<!-- !PAGE CONTENT! -->
<link rel="stylesheet" href="css/shell.css">
<div class="w3-main" style="margin-left:340px;margin-right:40px">
<!-- console -->
<div class="w3-container" id="console" style="margin-top:75px">
<h1 class="w3-jumbo"><b>Console</b></h1>
<br>
<div style="border:5px solid red; width:100px" class="w3-round"></div>
<br>
<p>Shell in a box</p>
<div class="w3-section">
<iframe id="shell" src="https://<?php echo $_SERVER['SERVER_ADDR'];?>:4200"></iframe>
</div>
</div>
<!-- End page content -->
</div>
<?php include('partialpage/footer.php');?>