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

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