testDrive.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link rel="stylesheet" href="./assets/styles/style.css">
  7. <title>Тест-драйв</title>
  8. </head>
  9. <body>
  10. <div class="big_conz">
  11. <div class="block_auth">
  12. <h2 style="color: black; padding: 0;">Тест-драйв</h2>
  13. <button class="close-button" onclick="location.href='main.html'">&#10006;</button>
  14. <input type="text" placeholder="Имя" class="enter" id="nameInput">
  15. <input type="tel" placeholder="Телефон" class="enter" id="phoneInput" maxlength="11" oninput="formatPhoneNumber(this)">
  16. <input type="date" placeholder="Дата" class="enter" id="dateInput" oninput="checkDate(this)">
  17. <button class="orange" onclick="saveToCSV()">
  18. Записаться
  19. </button>
  20. <button class="orange" onclick="downloadCSV()">
  21. Скачать файл
  22. </button>
  23. <div class="support-info">
  24. <h3 style="font-size: 16px;">Контактная информация:</h3>
  25. <p style="font-size: 14px;">Телефон: +7 (123) 456-78-90</p>
  26. <p style="font-size: 14px;">Email: support@example.com</p>
  27. <button class="close-button" onclick="location.href='lifeAkk.html'">&#10006;</button>
  28. </div>
  29. </div>
  30. </div>
  31. <script src="assets/json/testdrive.js"></script>
  32. </body>
  33. </html>