-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
162 lines (141 loc) · 4.81 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Forma demo page</title>
<style>
* {
box-sizing: border-box;
}
.container {
max-width: 400px;
margin: 0 auto;
}
.call-me-header {
text-align: center;
}
.call-me {
padding: 1em;
font-size: 16px;
background: #eee;
border-radius: 3px;
}
.call-me header {
text-align: center;
}
.call-me input {
font-size: 1.2em;
padding: 0.5em;
margin: 0.5em 0;
display: block;
width: 100%;
border: 1px solid #cddad0;
border-radius: 0.2em;
}
.call-me button[type="submit"] {
font-size: 1.2em;
margin: 0.5em auto;
padding: 0.5em;
display: block;
width: 100%;
border: 1px solid #cddad0;
border-radius: 0.2em;
border: none;
background: #336600;
color: #fff;
text-align: center;
}
.call-me button[type="submit"]:hover {
cursor: pointer;
background: #5c8f48;
}
.call-me .call-me-submit-loading {
display: none;
}
.call-me forma-form[state="submit"] form {
opacity: 0.5;
}
.call-me forma-form[state="submit"] .call-me-submit-text {
display: none;
}
.call-me forma-form[state="submit"] .call-me-submit-loading {
display: initial;
}
.call-me .call-me-messages {
text-align: center;
}
.call-me .call-me-messages .call-me-success {
color: green;
}
.call-me .call-me-messages .call-me-error {
color: red;
}
.call-me footer {
margin: 1em 0 0 0;
color: #a9a9a9;
font-size: 0.8em;
text-align: center;
}
</style>
<link href="https://unpkg.com/filepond@^4/dist/filepond.css" rel="stylesheet" />
<script defer src="https://unpkg.com/filepond@^4/dist/filepond.js"></script>
<script defer src="js/forma.js"></script>
</head>
<body>
<div class="container call-me">
<h2 class="call-me-header">Заказать звонок</h2>
<forma-form>
<header>
Оставьте заявку и с Вами свяжется наш менеджер
</header>
<!-- Контейнер для сообщений -->
<div class="call-me-messages">
<p class="call-me-success">
<forma-success default="Спасибо! Мы свяжемся с вами в ближайшее время!"><forma-success>
</p>
<p class="call-me-error">
<forma-fail default="Произошла ошибка! Проверьте данные и попробуйте отправить форму ещё раз!"></forma-fail>
<forma-error default="Произошла ошибка! Попробуйте отправить форму ещё раз позднее!"></forma-error>
</p>
</div>
<form action="/forma.php" method="post" data-secret="imnotarobot!">
<input type="text" name="name" required placeholder="Введите имя" />
<input type="tel" name="phone" required placeholder="Введите телефон" />
<input type="file" name="files[]" placeholder="Файлы для прикрепления" multiple data-filepond />
<button type="submit">
<span class="call-me-submit-text">Оставить Заявку</span>
<span class="call-me-submit-loading">Отправка...</span>
</button>
</form>
<footer>
Ваши данные не будут переданы третьим лицам
</footer>
</forma-form>
</div>
<script>
document.addEventListener('DOMContentLoaded', () => {
const inputs = document.querySelectorAll('input[type="file"][data-filepond]');
inputs.forEach(input => {
const form = input.form
const labelIdle = input.dataset.labelIdle || input.placeholder ||
'Перетащите файлы сюда или <span class="filepond--label-action">Выбрать</span>'
const pond = FilePond.create(input, {
storeAsFile: true,
labelIdle,
labelFileSizeBytes: 'байт',
labelFileSizeKilobytes: 'Кб',
labelFileSizeMegabytes: 'Мб',
labelFileSizeGigabytes: 'Гб',
credits: null
})
if (form) {
form.addEventListener('reset', event => {
pond.removeFiles()
})
}
})
})
</script>
</body>
</html>