-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlot_template.php
More file actions
116 lines (115 loc) · 6.02 KB
/
lot_template.php
File metadata and controls
116 lines (115 loc) · 6.02 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
<main>
<nav class="nav">
<ul class="nav__list container">
<li class="nav__item">
<a href="search_1.php">Доски и лыжи</a>
</li>
<li class="nav__item">
<a href="search_2.php">Крепления</a>
</li>
<li class="nav__item">
<a href="search_3.php">Ботинки</a>
</li>
<li class="nav__item">
<a href="search_4.php">Одежда</a>
</li>
<li class="nav__item">
<a href="search_5.php">Инструменты</a>
</li>
<li class="nav__item">
<a href="search_6.php">Разное</a>
</li>
</ul>
</nav>
<section class="lot-item container">
<h2><?= $lot['good_name'] ?></h2>
<div class="lot-item__content">
<div class="lot-item__left">
<div class="lot-item__image">
<img src="<?=$lot['url_img']?>" width="730" height="548" alt="Сноуборд">
</div>
<p class="lot-item__category">Категория: <span><?=$lot["title"]?></span></p>
<p class="lot-item__description"><?=$lot["good_discription"]?></p>
</div>
<div class="lot-item__right">
<div class="lot-item__state">
<div class="lot-item__timer timer <?php (string) get_left_time($lot["close_date"])["hours"]=="00" ? print "timer--finishing" : " "?>">
<?=get_left_time($lot["close_date"])["hours"].":".get_left_time($lot["close_date"])["min"]?>
</div>
<div class="lot-item__cost-state">
<div class="lot-item__rate">
<span class="lot-item__amount">Текущая цена</span>
<span class="lot-item__cost"><?=$lot['price']?></span>
</div>
<div class="lot-item__min-cost">
Мин. ставка <span><?=$lot['step_price']?></span>
</div>
</div>
<form class="lot-item__form" action="https://echo.htmlacademy.ru" method="post" autocomplete="off">
<p class="lot-item__form-item form__item form__item--invalid">
<label for="cost">Ваша ставка</label>
<input id="cost" type="text" name="cost" placeholder="12 000">
<span class="form__error">Введите наименование лота</span>
</p>
<button type="submit" class="button">Сделать ставку</button>
</form>
</div>
<div class="history">
<h3>История ставок (<span>10</span>)</h3>
<table class="history__list">
<tr class="history__item">
<td class="history__name">Иван</td>
<td class="history__price">10 999 р</td>
<td class="history__time">5 минут назад</td>
</tr>
<tr class="history__item">
<td class="history__name">Константин</td>
<td class="history__price">10 999 р</td>
<td class="history__time">20 минут назад</td>
</tr>
<tr class="history__item">
<td class="history__name">Евгений</td>
<td class="history__price">10 999 р</td>
<td class="history__time">Час назад</td>
</tr>
<tr class="history__item">
<td class="history__name">Игорь</td>
<td class="history__price">10 999 р</td>
<td class="history__time">19.03.17 в 08:21</td>
</tr>
<tr class="history__item">
<td class="history__name">Енакентий</td>
<td class="history__price">10 999 р</td>
<td class="history__time">19.03.17 в 13:20</td>
</tr>
<tr class="history__item">
<td class="history__name">Семён</td>
<td class="history__price">10 999 р</td>
<td class="history__time">19.03.17 в 12:20</td>
</tr>
<tr class="history__item">
<td class="history__name">Илья</td>
<td class="history__price">10 999 р</td>
<td class="history__time">19.03.17 в 10:20</td>
</tr>
<tr class="history__item">
<td class="history__name">Енакентий</td>
<td class="history__price">10 999 р</td>
<td class="history__time">19.03.17 в 13:20</td>
</tr>
<tr class="history__item">
<td class="history__name">Семён</td>
<td class="history__price">10 999 р</td>
<td class="history__time">19.03.17 в 12:20</td>
</tr>
<tr class="history__item">
<td class="history__name">Илья</td>
<td class="history__price">10 999 р</td>
<td class="history__time">19.03.17 в 10:20</td>
</tr>
</table>
</div>
</div>
</div>
</section>
</main>