47 lines
2.0 KiB
PHTML
Executable File
47 lines
2.0 KiB
PHTML
Executable File
|
|
<div class="columns">
|
|
<div class="column main">
|
|
|
|
<div class="cart-container">
|
|
<div class="cart-summary" style="top: 0px;">
|
|
<strong class="summary title">Request Quote</strong>
|
|
<br>
|
|
<h3 class="total-cart-quote"></h3>
|
|
<ul class="checkout methods items checkout-methods-items">
|
|
<li class="item"> <a href="<?php echo $this->getBaseUrl() .'carttoquote/request/quote'; ?>" type="button" data-role="proceed-to-checkout" title="Submit"
|
|
class="action primary checkout">
|
|
<span>Submit</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div id="form-validate"
|
|
class="form form-cart cart-quote">
|
|
<div class="cart table-wrapper">
|
|
<table id="shopping-cart-table" class="cart items data table">
|
|
<caption role="heading" aria-level="2" class="table-caption">Shopping Cart Items</caption>
|
|
<thead>
|
|
<tr>
|
|
<th class="col item" scope="col"><span>Item</span></th>
|
|
<!-- <th class="col price" scope="col"><span>Price</span></th> -->
|
|
<th class="col qty" scope="col"><span>Qty</span></th>
|
|
<th class="col subtotal" scope="col"><span>Action</span></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="cart item cart-quote-content">
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="cart main actions">
|
|
<button class="cart-quote-clean" style="display:none">
|
|
<span>Clean Cart</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|