1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <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=Inter:wght@700&display=swap" rel="stylesheet">
- <link rel="stylesheet" href="/css/normalise.css">
- <link rel="stylesheet" href="/css/style.css">
- <link rel="stylesheet" href="/css/order.css">
- <title>PCpoint | Заказ</title>
- </head>
- <body>
- <form class="main-wrapper" action="" method="post">
- <h2>Закажите сейчас и получите скидку 20%!</h2>
- <div class="user-name">
- <label for="name">Ваши ФИО: </label>
- <input type="text" name="name" id="name" placeholder="Иванов Иван Иванович">
- </div>
- <div class="user-phone">
- <label for="phone">Номер телефона: </label>
- <input type="tel" name="phone" id="phone" placeholder="88008008888">
- </div>
- <div class="user-email">
- <label for="user-email">Электронная почта: </label>
- <input type="email" name="user-email" id="user-email" placeholder="example@example.ru">
- </div>
- <div class="user-price">
- <label for="price">Бюджет: </label>
- <div class="price-wrapper">
- <input type="range" name="price" id="price" min="50000" max="1000000" step="10000" value="50000">
- <div class="price-wrapper">
- <p class="show_price" data-asd="15px">55000</p></div>
- </div>
- </div>
- <div class="user-about">
- <label for="about">Пожелания: </label>
- <textarea id="text" placeholder="Краткая информация для каких целей собирается ПК или список пожеланий"></textarea>
- </div>
- <div class="buttons">
- <button onclick="document.location='/index.html'" type="reset">Я подумаю</button>
- <input type="submit" value="Заказать звонок">
- </div>
- </form>
- <script>
- var input = document.querySelector(".user-price input");
- var show_price = document.querySelector(".user-price .show_price");
- show_price.style.left = 100 * (input.value - input.min) / (input.max - input.min) + "%";
- input.oninput = () => {
- show_price.innerText = input.value;
- show_price.style.left = 100 * (input.value - input.min) / (input.max - input.min) + "%";
- };
- </script>
- </body>
- </html>
|