-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (87 loc) · 4.18 KB
/
index.html
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
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon/favicon.svg" type="image/svg+xml">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap" rel="stylesheet">
<title>Gift Cards</title>
</head>
<body>
<header class="header u-wrapper">
<div class="logo">
<img src="/images/icon.svg" alt="" class="logo__icon" width="180" height="48">
</div>
</header>
<section class="about u-wrapper">
<h1 class="title stroke">Поздравьте близкого человека с праздником!</h1>
<p class="about__text">Выберите открытку и получатель получит ее на свой телефон</p>
</section>
<section class="congratulation u-wrapper">
<section class="cards">
<div class="swiper congratulation__swiper congratulation__swiper--card">
<div class="swiper-wrapper">
<div class="swiper-slide congratulation__card-slide">
<img src="./public/images/card1.png" alt="Открытка 1" class="card-image" data-card="card_01">
</div>
<div class="swiper-slide congratulation__card-slide">
<img src="./public/images/card2.png" alt="Открытка 2" class="card-image" data-card="card_02">
</div>
<div class="swiper-slide congratulation__card-slide">
<img src="./public/images/card3.png" alt="Открытка 3" class="card-image" data-card="card_03">
</div>
<div class="swiper-slide congratulation__card-slide">
<img src="./public/images/card4.png" alt="Открытка 4" class="card-image" data-card="card_04">
</div>
</div>
</div>
<div class="swiper congratulation__swiper congratulation__swiper--thumb">
<div class="swiper-wrapper">
<div class="swiper-slide congratulation__card-thumb">
<img src="./public/images/card1.png" alt="Открытка 1" class="card-image">
</div>
<div class="swiper-slide congratulation__card-thumb">
<img src="./public/images/card2.png" alt="Открытка 2" class="card-image">
</div>
<div class="swiper-slide congratulation__card-thumb">
<img src="./public/images/card3.png" alt="Открытка 3" class="card-image">
</div>
<div class="swiper-slide congratulation__card-thumb">
<img src="./public/images/card4.png" alt="Открытка 4" class="card-image">
</div>
</div>
</div>
</section>
<section class="gift__form">
<form action="" class="form">
<label class="form__label">
<span class="form__label-text">от кого</span>
<input type="text" class="form__field" name="sender_name">
</label>
<label class="form__label">
<span class="form__label-text">телефон отправителя</span>
<input type="text" class="form__field form__field--phone" name="sender_phone">
</label>
<label class="form__label">
<span class="form__label-text">кому</span>
<input type="text" class="form__field" name="reciever_name">
</label>
<label class="form__label">
<span class="form__label-text">телефон получателя</span>
<input type="text" class="form__field form__field--phone" name="reciever_phone">
</label>
<label class="form__label textarea">
<span class="form__label-text">поздравительный текст</span>
<textarea class="form__field form__field-textarea" name="message"
placeholder="Напишите теплые слова"></textarea>
</label>
<input class="form__card" type="hidden" name="card">
<button type="submit" class="form__button" disabled>Отправить</button>
</form>
</section>
</section>
<script type="module" src="/src/ts/main.ts"></script>
</body>
</html>