multy-stub/server/routers/questioneer/public/index.html

42 lines
1.4 KiB
HTML
Raw Normal View History

2025-03-11 23:50:50 +03:00
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Анонимные опросы</title>
<link rel="stylesheet" href="/questioneer/static/css/style.css">
</head>
<body>
<!-- Навигационная шапка -->
<header class="nav-header">
<div class="nav-container">
<a href="/questioneer" class="nav-logo">Анонимные опросы</a>
<nav class="nav-menu">
<a href="/questioneer" class="nav-link active">Главная</a>
<a href="/questioneer/create" class="nav-link">Создать опрос</a>
</nav>
</div>
</header>
<div class="container">
<h1>Сервис анонимных опросов</h1>
<div class="main-buttons">
<a href="/questioneer/create" class="btn">Создать новый опрос</a>
</div>
<div class="questionnaires-list">
<h2>Ваши опросы</h2>
<div id="questionnaires-container">
<p>Загрузка опросов...</p>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"></script>
<script src="/questioneer/static/js/common.js"></script>
<script src="/questioneer/static/js/index.js"></script>
</body>
</html>