152 lines
3.9 KiB
HTML
152 lines
3.9 KiB
HTML
{include file=$header}
|
||
|
||
|
||
<section class="container">
|
||
|
||
<nav aria-label="breadcrumb"
|
||
style="width: 100%; background-color: lightgray; border-radius: 0px 0px 10px 10px; padding-top: 15px; padding-bottom: 1px;">
|
||
<ol class="breadcrumb">
|
||
<li class="breadcrumb-item" aria-current="page"><a href="/">Главная</a></li>
|
||
<li class="breadcrumb-item active" aria-current="page">Корзина</li>
|
||
</ol>
|
||
</nav>
|
||
|
||
<h1>Корзина</h1>
|
||
|
||
|
||
<table class="table">
|
||
|
||
|
||
<tr>
|
||
<td></td>
|
||
<td><b>Наименование</b></td>
|
||
<td><b>Количество</b></td>
|
||
<td><b>Цена</b></td>
|
||
<td></td>
|
||
</tr>
|
||
|
||
{section name=customer loop=$cart} {if $cart[customer].id}
|
||
<tr class="global-cart-str-{$cart[customer].id}">
|
||
<td>
|
||
<a href="/tovar_show/{$cart[customer].tovar_id}"><img
|
||
src="/img/{$smarty.server.SERVER_NAME}/tovar/{$cart[customer].img}.jpg" width="130" alt=""></a>
|
||
|
||
|
||
</td>
|
||
<td>{$cart[customer].title}</td>
|
||
<td>
|
||
|
||
<input type="number" class="form-control rounded-0 change-kolvo" data-id="{$cart[customer].id}"
|
||
value="{$cart[customer].kolvo}" min="1">
|
||
|
||
</td>
|
||
<td>{$cart[customer].cena}</td>
|
||
<td><a class="fa fa-times fa-delete global-cart-delete" data-id="{$cart[customer].id}"></a></td>
|
||
</tr>
|
||
|
||
|
||
|
||
|
||
{/if} {/section}
|
||
|
||
|
||
</table>
|
||
|
||
<h3 class="mb-0 global-cart-summ">{$cart_summ} р.</h3>
|
||
|
||
|
||
<div class="d-lg-flex align-items-center gap-2">
|
||
<a href="/tovar_cat/1-0.html" class="btn btn-dark"><i class='bx bx-shopping-bag'></i> Продолжить покупки</a>
|
||
<a href="javascript:;" class="btn btn-light ms-auto"><i class='bx bx-x-circle'></i> Очистить</a>
|
||
<a href="javascript:;" class="btn btn-white"><i class='bx bx-refresh'></i> Обновить</a>
|
||
</div>
|
||
|
||
|
||
</section>
|
||
|
||
|
||
<section class="container" style="margin-top: 20px; margin-bottom: 150px; border: 1px solid gray; border-radius: 10px; padding: 20px;">
|
||
<h3>Оформить заказ</h3>
|
||
<hr>
|
||
<div class="row">
|
||
|
||
<div class="col-md-6">
|
||
<h3>Физ-лицо</h3>
|
||
{if ($smarty.session.user_id)}
|
||
<p>{$user[0].fio}</p>
|
||
<p>{$user[0].tel}</p>
|
||
<button type="button" class="btn btn-success" id="btn-zakaz-fz">Оформить</button>
|
||
{else}
|
||
<div class="card-body">
|
||
|
||
|
||
|
||
|
||
<div class="mb-3">
|
||
<label class="form-label">Фамилия, имя, отчество</label>
|
||
<input class="form-control" name="fio" id="order-fio">
|
||
</div>
|
||
|
||
<div class="mb-3">
|
||
<label class="form-label">Номер телефона</label>
|
||
<input class="form-control" name="tel" id="order-tel">
|
||
</div>
|
||
|
||
<div class="mb-3">
|
||
<label class="form-label">Адрес электронной почты</label>
|
||
<input class="form-control" name="email" type="email" id="order-email">
|
||
</div>
|
||
|
||
|
||
|
||
<button type="button" class="btn btn-success" id="btn-zakaz-fz-anonim">Оформить</button>
|
||
|
||
|
||
<div class="alert alert-info" role="alert">
|
||
<b>Внимание:</b> это простое оформление без регистрации, чтобы не вводить каждый раз данные - вы можете зарегистрироваться на нашем сайте
|
||
</div>
|
||
|
||
</div>
|
||
|
||
|
||
{/if}
|
||
|
||
</div>
|
||
|
||
<div class="col-md-6">
|
||
<h3>Организация</h3>
|
||
<div class="card-body">
|
||
|
||
|
||
|
||
<div class="my-3 border-top"></div>
|
||
<div class="mb-3">
|
||
<label class="form-label">ИНН:</label>
|
||
<input class="form-control" name="inn">
|
||
</div>
|
||
</div>
|
||
|
||
|
||
|
||
|
||
|
||
</div>
|
||
|
||
|
||
|
||
</div>
|
||
|
||
|
||
|
||
<div class="alert alert-success hidden" role="alert" id="alert-zakaz-ok">
|
||
<p><b>Заказ оформлен!</b></p>
|
||
|
||
<p>В ближайшее время наши менеджеры с вами свяжутся и обсудят детали сделки =)</p>
|
||
</div>
|
||
|
||
|
||
|
||
</section>
|
||
|
||
|
||
{include file=$footer} |