Blame view

frontend/views/cart/step.php 2.32 KB
394e2db6   Administrator   Importers CRUD
1
2
3
4
  <?php
  
  $this->registerCssFile('/css/style/busket.css');
  
aeb0c8b3   Administrator   upload project
5
  $this->title = 'Корзина';
394e2db6   Administrator   Importers CRUD
6
7
8
9
  $this->params['breadcrumbs'][] = $this->title;
  ?>
  
  
89d4b5ac   Administrator   VItaliy 25.11.2015
10
  <div class="main-vin">
394e2db6   Administrator   Importers CRUD
11
  	<p class="vin_article">Корзина</p>
aeb0c8b3   Administrator   upload project
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
      <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>