changelogin.php 1.6 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. <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="chlogin.php" method="POST">
  43. <label for="login"></label>
  44. <input type="text" id="login" name="login" required placeholder="Новый логин">
  45. <input type="submit" value="Сменить">
  46. </form>
  47. </body>
  48. </div>
  49. </div>