mirror of
https://github.com/Codiad/Codiad.git
synced 2026-03-24 18:06:50 +01:00
46 lines
887 B
PHP
46 lines
887 B
PHP
<!--
|
|
/*
|
|
* PHP+JQuery Temrinal Emulator by Fluidbyte <http://www.fluidbyte.net>
|
|
*
|
|
* This software is released as-is with no warranty and is complete free
|
|
* for use, modification and redistribution
|
|
*/
|
|
-->
|
|
<?php
|
|
|
|
require_once('../../../common.php');
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
// Verify Session or Key
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
checkSession();
|
|
|
|
?>
|
|
<!doctype html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Terminal</title>
|
|
<link rel="stylesheet" href="css/screen.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<div id="terminal">
|
|
|
|
<div id="output"></div>
|
|
|
|
<div id="command">
|
|
<div id="prompt">></div>
|
|
<input type="text">
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="js/jquery-1.8.2.js"></script>
|
|
<script src="js/system.js"></script>
|
|
|
|
</body>
|
|
</html>
|