60 lines
1.2 KiB
PHP
60 lines
1.2 KiB
PHP
<div class="container-fluid background-white-1 mt--4 p--2">
|
|
|
|
<div class="container">
|
|
<div class="col-lg-6">
|
|
|
|
<h4 class="mt--2">Buy Orders List</h4>
|
|
|
|
|
|
<div class="table-responsive mt--2">
|
|
<table class="table table-striped buy" cellpadding="10">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
|
|
<th> Price: </th>
|
|
|
|
<th> Quantity: </th>
|
|
|
|
<th>Total:</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="buying-list"></tbody>
|
|
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<h4 class="mt--2">Sell Orders List</h4>
|
|
<div class="table-responsive mt--2">
|
|
<table class="table table-striped sell" cellpadding="10">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th> Price: </th>
|
|
|
|
<th> Quantity: </th>
|
|
|
|
<th>Total:</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="selling-list"></tbody>
|
|
|
|
</table>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div> |