80 lines
3.4 KiB
PHP
80 lines
3.4 KiB
PHP
<div class="container-fluid background--white animated fadeInUp">
|
|
|
|
<div class="container">
|
|
|
|
<div class="col-sm-4 ">
|
|
<div class="box p--2 mt--4">
|
|
<div class="row">
|
|
<h2 class="text-center">Buy</h2>
|
|
<hr>
|
|
<div class="col-lg-12 lazy-form">
|
|
<label for="buy_btc">Quantity</label>
|
|
<input type="text" name="buy_btc" id="buy_btc">
|
|
</div>
|
|
|
|
<div class="col-lg-12 lazy-form">
|
|
<label for="buy_btc_price">Price Per Token (USD)</label>
|
|
<input type="text" name="buy_btc_price" id="buy_btc_price">
|
|
</div>
|
|
|
|
<div class="col-lg-12">
|
|
<input type="submit" id="buy_btn" class="btn btn--primary-1 btn-white <?=$action_class_buy_sell?>" value="Buy">
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
<div class="col-sm-4 ">
|
|
<div class="box p--2 mt--4">
|
|
<div class="row">
|
|
|
|
<h2 class="text-center">Sell</h2>
|
|
<hr>
|
|
<div class="col-lg-12 lazy-form">
|
|
<label for="sell_btc">Quantity</label>
|
|
<input type="text" name="sell_btc" id="sell_btc">
|
|
</div>
|
|
|
|
<div class="col-lg-12 lazy-form">
|
|
<label for="sell_btc_price">Price Per Token (USD)</label>
|
|
<input type="text" name="sell_btc_price" id="sell_btc_price">
|
|
</div>
|
|
|
|
<div class="col-lg-12">
|
|
<input type="submit" id="sell_btn" class="btn btn--primary-3 btn-white <?=$action_class_buy_sell?>" value="Sell">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-4 ">
|
|
<div class="box p--2 mt--4">
|
|
<div class="row">
|
|
|
|
<h2 class="text-center">Buy or Sell immediately
|
|
<a class="text--tiny" data-trigger="hover" data-toggle="popover" data-content="Price is decided by the market itself. Sellers are offered highest buying price and buyers are offered lowest selling price on offer." data-placement="bottom">What's this?</a>
|
|
</h2>
|
|
<hr>
|
|
<div class="col-lg-12 lazy-form">
|
|
<label for="market_order">Quantity</label>
|
|
<input type="text" name="market" id="market_order" >
|
|
</div>
|
|
<div class="col-lg-12 mt--3 lazy-form">
|
|
<div class="radio-group">
|
|
<input type="radio" class="market_radio" name="marketOrder" id="buy" value="market_buy_btn"> <label for="buy">Buy</label>
|
|
<input type="radio" class="market_radio" name="marketOrder" id="sell" value="market_sell_btn"> <label for="sell">Sell</label>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-12 mt--2">
|
|
<input id="market_order_btn" type="submit" class="btn btn--primary-2 btn-white <?=$action_class_market?>" value="Trade Instantly">
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div> |