izmpassword.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. <link rel="stylesheet" href="./assets/styles/credit.css">
  8. <script src="assets/json/changePassword.js"></script>
  9. <title>Смена пароля</title>
  10. </head>
  11. <body>
  12. <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
  13. <div class="block_auth">
  14. <h2 style="color: black; padding: 0;">СМЕНА ПАРОЛЯ</h2>
  15. <form>
  16. <div class="password-container">
  17. <input type="password" id="oldPassword" placeholder="Старый пароль" class="enter">
  18. </div>
  19. <br><br>
  20. <div class="password-container">
  21. <input type="password" id="newPassword" placeholder="Новый пароль" class="enter">
  22. </div>
  23. <br><br>
  24. <div class="password-container">
  25. <input type="password" id="repeatPassword" placeholder="Повторите пароль" class="enter">
  26. </div>
  27. <br><br>
  28. </form>
  29. <button class="orange" onclick="changePassword()">
  30. Сохранить пароль
  31. </button>
  32. <span class="close" onclick="window.location.href='lifeAkk.html'">&times;</span>
  33. </div>
  34. </div>
  35. </body>
  36. </html>