Files
TaoWeb/index.html
2026-02-01 20:09:11 +09:00

57 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<div class="container">
<div class="wrapper">
<header class="header"></header>
<main class="main">
<div class="main-inner">
<form action="" method="post">
<label for="name">Имя</label>
<input type="text" name="name" id="name">
<label for="surname">Фамилия</label>
<input type="text" name="surname" id="surname">
<label for="otchestvo">Отчество</label>
<input type="text" name="otchestvo" id="otchestvo">
<label for="tel">Телефон</label>
<input type="tel" name="tel" id="tel">
<label for="email">Почта</label>
<input type="email" name="email" id="email">
<label for="inptGrp">Тип обращения</label>
<div class="inptGrp">
<label for="radio">Вставить ссылку на TaoBao</label>
<input type="radio" name="radio" id="radio1">
<label for="radio">Описать необходимый товар</label>
<input type="radio" name="radio" id="radio2">
</div>
</form>
</div>
</main>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
<script type="module" src="/src/case.js"></script>
</body>
</html>