order.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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="preconnect" href="https://fonts.googleapis.com">
  7. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  8. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap" rel="stylesheet">
  9. <link rel="stylesheet" href="/css/normalise.css">
  10. <link rel="stylesheet" href="/css/style.css">
  11. <link rel="stylesheet" href="/css/order.css">
  12. <title>PCpoint | Заказ</title>
  13. </head>
  14. <body>
  15. <form class="main-wrapper" action="" method="post">
  16. <h2>Закажите сейчас и получите скидку 20%!</h2>
  17. <div class="user-name">
  18. <label for="name">Ваши ФИО: </label>
  19. <input type="text" name="name" id="name" placeholder="Иванов Иван Иванович">
  20. </div>
  21. <div class="user-phone">
  22. <label for="phone">Номер телефона: </label>
  23. <input type="tel" name="phone" id="phone" placeholder="88008008888">
  24. </div>
  25. <div class="user-email">
  26. <label for="user-email">Электронная почта: </label>
  27. <input type="email" name="user-email" id="user-email" placeholder="example@example.ru">
  28. </div>
  29. <div class="user-price">
  30. <label for="price">Бюджет: </label>
  31. <div class="price-wrapper">
  32. <input type="range" name="price" id="price" min="50000" max="1000000" step="10000" value="50000">
  33. <div class="price-wrapper">
  34. <p class="show_price" data-asd="15px">55000</p></div>
  35. </div>
  36. </div>
  37. <div class="user-about">
  38. <label for="about">Пожелания: </label>
  39. <textarea id="text" placeholder="Краткая информация для каких целей собирается ПК или список пожеланий"></textarea>
  40. </div>
  41. <div class="buttons">
  42. <button onclick="document.location='/index.html'" type="reset">Я подумаю</button>
  43. <input type="submit" value="Заказать звонок">
  44. </div>
  45. </form>
  46. <script>
  47. var input = document.querySelector(".user-price input");
  48. var show_price = document.querySelector(".user-price .show_price");
  49. show_price.style.left = 100 * (input.value - input.min) / (input.max - input.min) + "%";
  50. input.oninput = () => {
  51. show_price.innerText = input.value;
  52. show_price.style.left = 100 * (input.value - input.min) / (input.max - input.min) + "%";
  53. };
  54. </script>
  55. </body>
  56. </html>