izmpassword.html 1.9 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. <span class="password-icon" id="oldPasswordIcon" onclick="togglePasswordVisibility('oldPassword')">👁</span>
  19. </div>
  20. <br><br>
  21. <div class="password-container">
  22. <input type="password" id="newPassword" placeholder="Новый пароль" class="enter">
  23. <span class="password-icon" id="newPasswordIcon" onclick="togglePasswordVisibility('newPassword')">👁</span>
  24. </div>
  25. <br><br>
  26. <div class="password-container">
  27. <input type="password" id="repeatPassword" placeholder="Повторите пароль" class="enter">
  28. <span class="password-icon" id="repeatPasswordIcon" onclick="togglePasswordVisibility('repeatPassword')">👁</span>
  29. </div>
  30. <br><br>
  31. </form>
  32. <button class="orange" onclick="changePassword()">
  33. Сохранить пароль
  34. </button>
  35. <span class="close" onclick="window.location.href='lifeAkk.html'">&times;</span>
  36. </div>
  37. </div>
  38. </body>
  39. </html>