registration.html 1.3 KB

1234567891011121314151617181920212223242526
  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. <script src="assets/json/registration.js"></script>
  9. </head>
  10. <body>
  11. <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
  12. <div class="block_auth">
  13. <h2 style="color: black; padding: 0;">РЕГИСТРАЦИЯ</h2>
  14. <input type="text" id="name" placeholder="Имя" class="enter">
  15. <input type="text" id="surname" placeholder="Фамилия" class="enter">
  16. <input type="text" id="phone" placeholder="Номер телефона" class="enter">
  17. <input type="text" id="email" placeholder="Email" class="enter">
  18. <input type="password" id="password" placeholder="Пароль" class="enter">
  19. <button class="orange" onclick="return validateForm()">
  20. <a href="mainPage.html" class="p14">ЗАРЕГИСТРИРОВАТЬСЯ</a>
  21. </button>
  22. <span class="close" onclick="window.location.href='index.html'">&times;</span>
  23. </div>
  24. </div>
  25. </body>
  26. </html>