flo-exchange/views/buy_sell_list.php

59 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">List of Buyers</h4>
<div class="table-responsive mt--2">
<table class="table table-striped buy" cellpadding="10">
<thead>
<tr>
<th> Buyer: </th>
<th> Price: </th>
<th> Quantity: </th>
</tr>
</thead>
<tbody id="buying-list"></tbody>
</table>
</div>
</div>
<div class="col-lg-6">
<h4 class="mt--2">List of Sellers</h4>
<div class="table-responsive mt--2">
<table class="table table-striped sell" cellpadding="10">
<thead>
<tr>
<th> Seller: </th>
<th> Price: </th>
<th> Quantity: </th>
</tr>
</thead>
<tbody id="selling-list"></tbody>
</table>
</div>
</div>
</div>
</div>