DmitrMakeev
commited on
Update biz_v.html
Browse files- biz_v.html +4 -21
biz_v.html
CHANGED
@@ -104,21 +104,6 @@
|
|
104 |
#uploadButton:hover {
|
105 |
background-color: #388E3C;
|
106 |
}
|
107 |
-
/* Стили для выпадающего списка */
|
108 |
-
#dropdown-container select {
|
109 |
-
width: 100%;
|
110 |
-
padding: 12px;
|
111 |
-
font-size: 16px;
|
112 |
-
border: 1px solid #ccc;
|
113 |
-
border-radius: 5px;
|
114 |
-
box-sizing: border-box;
|
115 |
-
background-color: white;
|
116 |
-
appearance: none; /* Убираем стандартные стили браузера */
|
117 |
-
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>');
|
118 |
-
background-repeat: no-repeat;
|
119 |
-
background-position: right 10px center;
|
120 |
-
background-size: 16px;
|
121 |
-
}
|
122 |
/* Центрирование заголовков блоков */
|
123 |
.block h2 {
|
124 |
text-align: center;
|
@@ -230,10 +215,8 @@
|
|
230 |
<input type="text" id="tokenInput" placeholder="Введите токен">
|
231 |
</div>
|
232 |
<div class="form-group">
|
233 |
-
<label for="
|
234 |
-
<
|
235 |
-
|
236 |
-
</select>
|
237 |
</div>
|
238 |
<div class="form-group">
|
239 |
<label for="typeSelect">Выбор формата вебинара:</label>
|
@@ -310,7 +293,7 @@
|
|
310 |
if (requestButtonClicked) return;
|
311 |
requestButtonClicked = true;
|
312 |
const token = document.getElementById('tokenInput').value;
|
313 |
-
const minDate = document.getElementById('
|
314 |
const type = document.getElementById('typeSelect').value;
|
315 |
const url = '/send_request';
|
316 |
fetch(url, {
|
@@ -369,4 +352,4 @@
|
|
369 |
}
|
370 |
</script>
|
371 |
</body>
|
372 |
-
</html>
|
|
|
104 |
#uploadButton:hover {
|
105 |
background-color: #388E3C;
|
106 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
/* Центрирование заголовков блоков */
|
108 |
.block h2 {
|
109 |
text-align: center;
|
|
|
215 |
<input type="text" id="tokenInput" placeholder="Введите токен">
|
216 |
</div>
|
217 |
<div class="form-group">
|
218 |
+
<label for="dateInput">Крайняя дата выборки комнат:</label>
|
219 |
+
<input type="date" id="dateInput">
|
|
|
|
|
220 |
</div>
|
221 |
<div class="form-group">
|
222 |
<label for="typeSelect">Выбор формата вебинара:</label>
|
|
|
293 |
if (requestButtonClicked) return;
|
294 |
requestButtonClicked = true;
|
295 |
const token = document.getElementById('tokenInput').value;
|
296 |
+
const minDate = document.getElementById('dateInput').value;
|
297 |
const type = document.getElementById('typeSelect').value;
|
298 |
const url = '/send_request';
|
299 |
fetch(url, {
|
|
|
352 |
}
|
353 |
</script>
|
354 |
</body>
|
355 |
+
</html>
|