регистрация.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. <title>Регистрация</title>
  7. <link rel="stylesheet" type="text/css" href="стили/авторизация.css">
  8. </head>
  9. <body>
  10. <div class="container">
  11. <h2>Регистрация</h2>
  12. <form id="registrationForm">
  13. <input type="text" id="name" placeholder="ФИО" required>
  14. <input type="tel" id="phone" name="phone" placeholder="+7 (_) _-__" required
  15. oninput="this.value = this.value.replace(/[^0-9]/g, '').replace(/(\d{3})(\d{3})(\d{4})/, '+7 ($1) $2-$3')"
  16. onfocus="if (this.value === '+7 (_) _-__') this.value = '+7'">
  17. <input type="email" id="email" placeholder="Email" required>
  18. <div id="codeContainer">
  19. <button id="getCodeButton">Получить код</button><br><br>
  20. <input type="text" id="code" placeholder="Код из почты" required>
  21. </div>
  22. <input type="password" id="password" placeholder="Пароль" required>
  23. <div class="checkbox-container">
  24. <input type="checkbox" id="terms" required>
  25. <label for="terms" class="checkbox-text">
  26. Согласен с условиями конфиденциальности
  27. </label>
  28. </div>
  29. <button type="submit">Зарегистрироваться</button>
  30. </form>
  31. <div id="successPopup" class="popup">
  32. <span class="close-button" onclick="closePopup()">×</span>
  33. <h3 style="color: white;">Вы успешно зарегистрированы!</h3>
  34. </div>
  35. <div id="errorPopup" class="popup">
  36. <span class="close-button" onclick="closePopup()">×</span>
  37. <h3 id="errorMessage" style="color: white;"></h3>
  38. </div>
  39. </div>
  40. <a href="главная.html" class="footer-link">На главную</a>
  41. <script src="скрипты_js/регистрация.js"></script>
  42. </body>
  43. </html>