-
Notifications
You must be signed in to change notification settings - Fork 11
/
allcommands.php
executable file
·55 lines (54 loc) · 2.47 KB
/
allcommands.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
include ("header.php");
include ("pass.php");
$all_commands = ($coin->help());
?>
<div style="padding: 5px 15px 5px;">
<p><b>Use this page to issue any command not available on the control page. All available commands
for the current wallet are shown below. The command is followed by the parameters, parameters
denoted inside of < and > are required, optional parameters are inside of [ and ].</b></p>
<div class="row">
<div class="col-lg-6">
<form action="command" method="POST"><input type="hidden">
<div class="input-group">
<span class="input-group-btn">
<button class='btn btn-default' type="submit" value="command">Issue Command</button>
</span>
<input class="form-control" type="text" name="order" placeholder="Command">
</div><!-- /input-group -->
</div><!-- /.col-lg-6-->
<div class="col-lg-6">
<input class="form-control" type="text" name="var1" placeholder="First Variable">
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-6">
<input class="form-control" type="text" name="var2" placeholder="Second Parameter">
</div><!-- /.col-lg-6 -->
<div class="col-lg-6">
<input class="form-control" type="text" name="var3" placeholder="Third Parameter">
</div><!-- /.col-lg-6 -->
</div><!-- /.row --></br>
<div class="row">
<div class="col-lg-6">
<input class="form-control" type="text" name="var4" placeholder="Fourth Parameter">
</div><!-- /.col-lg-6 -->
<div class="col-lg-6">
<input class="form-control" type="text" name="var5" placeholder="Fifth Parameter">
</div><!-- /.col-lg-6 -->
</div><!-- /.row --></br>
<div class="row">
<div class="col-lg-6">
<input class="form-control" type="text" name="var6" placeholder="Sixth Parameter">
</div><!-- /.col-lg-6 -->
<div class="col-lg-6">
<input class="form-control" type="text" name="var7" placeholder="Seventh Parameter">
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
</div><!-- /.style -->
</div>
<div class="well">
<p><b>Available Commands</b></p>
<?php printarray(htmlentities($all_commands));?>
</div>
<?php include ("footer.php");?>