busket_step2.php
4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
$this->registerCssFile('/css/style/busket.css');
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="vin">
<a href="" class="navigation">Италавто</a>
<img src="/images/arrow_dots.png" class='arrow_go'>
<span>Корзина</span>
<p class="vin_article">Корзина</p>
</div>
<div class="choose_tovar">
<form method="get" class="cmxform" action="" id="profile_form">
<div class="personal_info">
<fieldset>
<h3>Данные</h3>
<input name="name" id="name" placeholder="Ф.И.О" minlength="4" type="text" required="">
<span class="star">*</span>
<input type="phone" name="telephone" id="telephone_registration" placeholder="Телефон" minlength="7" required="">
<span class="star3">*</span>
<input type="email" name="email" id="email" placeholder="email" minlength="" required="">
<input type="text" name="idea" id="idea" placeholder="Комментарий" >
</fieldset>
</div>
<div class="delievery">
<h3>Доставка</h3>
<ul>
<li>
<input type="radio" id="autolux" class="filter-two" name="delivery" value="autolux" checked="">
<label for="autolux"><span></span><p>Автолюкс до 16:20</p></label>
</li>
<li>
<input type="radio" id="gunsel" class="filter-two" name="delivery" value="gunsel">
<label for="gunsel"><span></span><p>Гюнсел до 16:20</p></label>
</li>
<li>
<input type="radio" id="post" class="filter-two" name="delivery" value="post">
<label for="post"><span></span><p>Новая почта до 17:20</p></label>
</li>
<li>
<input type="radio" id="personal" class="filter-two" name="delivery" value="personal">
<label for="personal"><span></span><p>Самовывоз</p></label>
</li>
<li>
<input type="checkbox" id="assurance" class="filter-two" name="assurance" value="assurance" checked> <label for="assurance"><span></span><a href="">Застраховать заказ</a></label>
</li>
</ul>
</div>
<button class="purple">Подтвердить заказ</button>
</form>
</div>
<div class="slider_block1">
<div class="tovars">
<p style="display:inline-block">Наши проекты</p>
<span><img src="/images/arrow_slider_back.png"></span>
<span class="number_of">1/</span>
<span class="general_number">5</span>
<span><img src="/images/arrow_slider_go.png"></span>
<div class="slider_tovars">
<table class="block_project">
<tbody><tr><td>
<img src="/images/logo-lr-small.png">
</td></tr>
<tr><td>
<a href="">lr.italauto.com.ua</a>
</td></tr>
<tr><td>
<ul>
<h4>Запчасти на Land Rover<br> и Range Rover</h4>
<li>Оригинальные запчасти</li>
<li>Сертифицированый продавец</li>
<li>Более 300 000 товаров</li>
</ul>
</td></tr>
</tbody></table>
<table class="block_project">
<tbody><tr><td>
<img src="/images/logo-mersedes-small.png">
</td></tr>
<tr><td>
<a href="">lr.italauto.com.ua</a>
</td></tr>
<tr><td>
<ul>
<h4>Запчасти на<br> Mercedes Benz</h4>
<li>Оригинальные запчасти</li>
<li>Сертифицированый продавец</li>
<li>Более 300 000 товаров</li>
</ul>
</td></tr>
</tbody></table>
<table class="block_project">
<tbody><tr><td>
<img src="/images/logo-fiat-small.png">
</td></tr>
<tr><td>
<a href="">lr.italauto.com.ua</a>
</td></tr>
<tr><td>
<ul>
<h4>Запчасти на FIAT</h4>
<li>Оригинальные запчасти</li>
<li>Сертифицированый продавец</li>
<li>Более 300 000 товаров</li>
</ul>
</td></tr>
</tbody></table>
<table class="block_project">
<tbody><tr><td>
<img src="/images/logo-lr-small.png">
</td></tr>
<tr><td>
<a href="">lr.italauto.com.ua</a>
</td></tr>
<tr><td>
<ul>
<h4>Запчасти на Land Rover<br> и Range Rover</h4>
<li>Оригинальные запчасти</li>
<li>Сертифицированый продавец</li>
<li>Более 300 000 товаров</li>
</ul>
</td></tr>
</tbody></table>
</div>
</div>
</div>