-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfree_commands.php
More file actions
53 lines (37 loc) · 1.3 KB
/
free_commands.php
File metadata and controls
53 lines (37 loc) · 1.3 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
include_once 'parts/header.php';
?>
<body>
<?php include_once 'parts/nav.php';?>
<!-- start: Content -->
<div id="content" class="span10">
<ul class="breadcrumb">
<li>
<i class="icon-home"></i>
<a href="index.php">Home</a>
<i class="icon-angle-right"></i>
</li>
<li><a href="free_commands.php">Free Command Line</a></li>
</ul>
<div class="row-fluid">
<h1 class="page-header">Free Command Line</h1>
<form class="form-horizontal" role="form" style="margin-bottom: 70px;">
<div class="form-group">
<label for="inputCommand" class="control-label">Enter Command: </label>
<div class="">
<input type="text" class="form-control" name="command" placeholder="Command">
</div>
</div>
<div class="col-sm-offset-1 col-sm-3">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</form>
<pre id="command-respond"></pre>
</div>
<!-- end: Content -->
</div><!--/#content.span10-->
</div><!--/fluid-row-->
<script src="js_lib/shell_commands.js"></script>
<?php include_once 'parts/bottom.php';?>
</body>
</html>