lifeAkk.html 1.5 KB

1234567891011121314151617181920212223242526272829303132
  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. <script src="assets/json/Account.js"></script>
  8. <title>Личный кабинет</title>
  9. </head>
  10. <body>
  11. <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
  12. <div class="block_auth">
  13. <h2 style="color: black; padding: 0;">ЛИЧНЫЙ КАБИНЕТ</h2>
  14. <form>
  15. <input type="text" id="name" placeholder="Имя" class="enter"> <br><br>
  16. <input type="text" id="lastName" placeholder="Фамилия" class="enter"> <br><br>
  17. <input type="text" id="phone" placeholder="Номер телефона" class="enter">
  18. </form>
  19. <button class="orange"><a href="izmpassword.html" class="p14">Изменить пароль</a></button>
  20. <span class="close" onclick="window.location.href='mainPage.html'">&times;</span>
  21. <div class="button-container">
  22. <button class="half-orange orange" onclick="window.location.href='testDrive.html'">Записаться на тест-драйв</button>
  23. <button class="half-orange orange" onclick="window.location.href='credit.html'">Рассчитать кредит</button>
  24. </div>
  25. </div>
  26. </div>
  27. </body>
  28. </html>