formLogin.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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/styleformLogim.css">
  6. <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  7. <title>Методический центр "Технология"</title>
  8. </head>
  9. <header class="header">
  10. <div class="header-logo">
  11. <img src="img/лого.png" alt="Логотип методического центра">
  12. </div>
  13. <div class="header-info">
  14. <h1 class="header-tech">ТЕХНОЛОГИЯ</h1>
  15. <div class="header-center">
  16. | Методический центр
  17. </div>
  18. <div class="header-location">
  19. г. Нижний Новгород, пр. Кирова, 12
  20. </div>
  21. <div class="header-phone">
  22. | +7 (831) 291-50-25
  23. </div>
  24. </div>
  25. </header>
  26. <body>
  27. <div class="pred_up">
  28. <div class="login">
  29. <div class="error">
  30. <script>
  31. var urlParams = new URLSearchParams(window.location.search);
  32. var message = urlParams.get('message');
  33. if(message == null)
  34. {
  35. }
  36. else
  37. {
  38. document.write(message);
  39. }
  40. </script>
  41. </div>
  42. <form action="login.php" method="POST">
  43. <label for="login"></label>
  44. <input type="text" id="login" name="login" required placeholder="Логин">
  45. <label for="password"></label>
  46. <input type="password" id="password" name="password" required placeholder="Пароль">
  47. <input type="submit" value="Войти">
  48. <p><a href="Registration.php">Зарегистрироваться</a></p>
  49. <p><a href="forgotpassword.php">Забыли пароль?</a></p>
  50. </form>
  51. </body>
  52. </div>
  53. </div>