datatable.directory codebase
https://datatable.directory/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.5 KiB
53 lines
1.5 KiB
6 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||
|
<meta name="_token" content="{{ csrf_token() }}">
|
||
|
|
||
|
<title>PHP debug sandbox</title>
|
||
|
|
||
|
<link rel="stylesheet" type="text/css" href="/sandbox-assets/styles.css"/>
|
||
|
|
||
|
<script src="/sandbox-assets/jquery-1.9.1.min.js"></script>
|
||
|
<script src="/sandbox-assets/ace/ace.js"></script>
|
||
|
<script src="/sandbox-assets/ace/theme-monokai.js"></script>
|
||
|
<script src="/sandbox-assets/ace/mode-php.js"></script>
|
||
|
<script src="/sandbox-assets/moment.min.js"></script>
|
||
|
<script src="/sandbox-assets/ace/ext-language_tools.js"></script>
|
||
|
<script src="/sandbox-assets/php-console.js"></script>
|
||
|
|
||
|
<script>
|
||
|
var defcode = @json($defcode);
|
||
|
|
||
|
$.console({
|
||
|
tabsize: 4
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="console-wrapper">
|
||
|
<div class="input-wrapper">
|
||
|
<form method="POST" action="" id="mainform">
|
||
|
<div class="input">
|
||
|
<textarea class="editor" id="editor" name="code">{{ $code or "<?php\n" }}</textarea>
|
||
|
</div>
|
||
|
<div class="statusbar">
|
||
|
<select id="saves"></select>
|
||
|
<a id="btn-new">new</a>
|
||
|
<a id="btn-ren">ren</a>
|
||
|
<a id="btn-del">del</a>
|
||
|
|
|
||
|
<span class="position">Line: 1, Column: 1</span>
|
||
|
<span class="runtime-info"></span>
|
||
|
<input type="submit" name="subm" value="Run!"/>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
<div class="output-wrapper">
|
||
|
<div class="output">{{ $output or '' }}</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|