123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="./assets/styles/style.css">
- <link rel="stylesheet" href="./assets/styles/credit.css">
- <script src="assets/json/changePassword.js"></script>
- <title>Смена пароля</title>
- </head>
- <body>
- <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
- <div class="block_auth">
- <h2 style="color: black; padding: 0;">СМЕНА ПАРОЛЯ</h2>
- <form>
- <div class="password-container">
- <input type="password" id="oldPassword" placeholder="Старый пароль" class="enter">
-
- </div>
- <br><br>
- <div class="password-container">
- <input type="password" id="newPassword" placeholder="Новый пароль" class="enter">
-
- </div>
- <br><br>
- <div class="password-container">
- <input type="password" id="repeatPassword" placeholder="Повторите пароль" class="enter">
-
- </div>
- <br><br>
- </form>
- <button class="orange" onclick="changePassword()">
- Сохранить пароль
- </button>
- <span class="close" onclick="window.location.href='lifeAkk.html'">×</span>
- </div>
- </div>
- </body>
- </html>
|