Registration.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <html lang="ru">
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <link rel="stylesheet" href="./styles/registration.css">
  6. <title>Методический центр "Технология"</title>
  7. </head>
  8. <header class="header">
  9. <div class="header-logo">
  10. <img src="img/лого.png" alt="Логотип методического центра">
  11. </div>
  12. <div class="header-info">
  13. <h1 class="header-tech">ТЕХНОЛОГИЯ</h1>
  14. <div class="header-center">
  15. | Методический центр
  16. </div>
  17. <div class="header-location">
  18. г. Нижний Новгород, пр. Кирова, 12
  19. </div>
  20. <div class="header-phone">
  21. | +7 (831) 291-50-25
  22. </div>
  23. </div>
  24. </header>
  25. <body>
  26. <div class="pred_up">
  27. <div class="login">
  28. <div class="error">
  29. <script>
  30. var urlParams = new URLSearchParams(window.location.search);
  31. var message = urlParams.get('message');
  32. if(message == null)
  33. {
  34. }
  35. else
  36. {
  37. document.write(message);
  38. }
  39. </script>
  40. </div>
  41. <form action="reegistration.php" method="POST">
  42. <label for="login"></label>
  43. <input type="text" id="login" name="login" required placeholder="Логин">
  44. <label for="name"></label>
  45. <input type="text" id="name" name="name" required placeholder="Имя">
  46. <label for="surname"></label>
  47. <input type="text" id="surname" name="surname" required placeholder="Фамилия">
  48. <label for="email"></label>
  49. <input type="email" id="email" name="email" required placeholder="Email">
  50. <label for="password"></label>
  51. <input type="password" id="password" name="password" required placeholder="Пароль">
  52. <input type="submit" value="Зарегистрироваться" id="login">
  53. </form>
  54. </body>
  55. </div>
  56. </div>