forgotpassword.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. <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 = "forgot.php" method="POST">
  42. <label for="email"></label>
  43. <input type="email" id="email" name="email" required placeholder="Email">
  44. <label for="login"></label>
  45. <input type="text" id="login" name="login" required placeholder="Логин">
  46. <input type="submit" value="Узнать пароль">
  47. </form>
  48. </div>
  49. </div>
  50. </div>