Files
frontend-start/cabinet.html
2026-05-01 15:29:04 +03:00

53 lines
2.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang='ru'>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>Личный кабинет — заявка</title>
<meta name='theme-color' content='#070b28'>
<link rel='icon' href='assets/images/logo-icon.ico' sizes='any'>
<link rel='apple-touch-icon' href='assets/images/logo-icon.ico'>
<link rel='preconnect' href='https://fonts.googleapis.com'>
<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin>
<link href='https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Nunito+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap' rel='stylesheet'>
<link rel='stylesheet' href='css/styles.css'>
</head>
<body>
<div class='page'>
<header class='header' id='top'>
<div class='header__inner'>
<a class='logo logo--header' href='index.html'><img class='logo__img' src='assets/images/logo-full-white.png' alt='ЭКСА' width='160' height='48' decoding='async'></a>
<nav class='nav'>
<a class='nav__link' href='index.html#about'>О нас</a>
</nav>
<a class='btn btn--cabinet' href='cabinet.html'>Личный кабинет</a>
<button class='burger' type='button' aria-label='Меню'></button>
</div>
</header>
<main class='cabinet'>
<a class='cabinet__back' href='index.html'>На главную</a>
<div class='cabinet__center'>
<section class='cabinet__card' aria-labelledby='cabinet-title'>
<h1 class='cabinet__title' id='cabinet-title'>Заявка</h1>
<form class='cabinet__form' id='cabinet-form'>
<label class='cabinet__field'>
<span class='cabinet__label'>Email</span>
<input class='cabinet__input' type='email' name='email' required autocomplete='email' inputmode='email'>
</label>
<label class='cabinet__field'>
<span class='cabinet__label'>Имя</span>
<input class='cabinet__input' type='text' name='name' required autocomplete='name'>
</label>
<button class='cabinet__submit' type='submit'>Оставить заявку</button>
</form>
<p class='cabinet__status' id='cabinet-status' hidden></p>
</section>
</div>
</main>
</div>
<script src='js/site-config.js'></script>
<script src='js/main.js?v=20260513' defer></script>
</body>
</html>