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>
|
2025-03-12 00:09:36 +03:00
|
|
|
|
<!-- Добавляем проверку на различные пути -->
|
|
|
|
|
<script>
|
|
|
|
|
// Определяем путь к статическим файлам с учетом prod и dev окружений
|
|
|
|
|
function getStaticPath() {
|
|
|
|
|
if (window.location.pathname.includes('/ms/questioneer')) {
|
|
|
|
|
// Для продакшна
|
|
|
|
|
return '/ms/questioneer/static';
|
|
|
|
|
} else {
|
|
|
|
|
// Для локальной разработки
|
2025-03-12 00:37:32 +03:00
|
|
|
|
const basePath = window.location.pathname.split('/poll')[0];
|
|
|
|
|
// Проверяем, заканчивается ли путь на слеш
|
|
|
|
|
return basePath + (basePath.endsWith('/') ? 'static' : '/static');
|
2025-03-12 00:09:36 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Динамически добавляем CSS
|
|
|
|
|
const cssLink = document.createElement('link');
|
|
|
|
|
cssLink.rel = 'stylesheet';
|
|
|
|
|
cssLink.href = getStaticPath() + '/css/style.css';
|
|
|
|
|
document.head.appendChild(cssLink);
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<!-- Добавляем jQuery -->
|
|
|
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
|
|
|
// Динамически добавляем скрипты
|
|
|
|
|
const scriptPaths = [
|
|
|
|
|
'/js/common.js',
|
|
|
|
|
'/js/poll.js'
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const staticPath = getStaticPath();
|
|
|
|
|
scriptPaths.forEach(path => {
|
|
|
|
|
const script = document.createElement('script');
|
|
|
|
|
script.src = staticPath + path;
|
|
|
|
|
document.body.appendChild(script);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2025-03-11 23:50:50 +03:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2025-03-12 09:12:09 +03:00
|
|
|
|
<!-- Навигационная шапка -->
|
|
|
|
|
<header class="nav-header">
|
|
|
|
|
<div class="nav-container">
|
|
|
|
|
<a href="javascript:;" id="nav-home-link" class="nav-logo">Анонимные опросы</a>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
|
2025-03-11 23:50:50 +03:00
|
|
|
|
<div class="container">
|
|
|
|
|
<div id="loading">Загрузка опроса...</div>
|
|
|
|
|
|
|
|
|
|
<div id="questionnaire-container" style="display: none;">
|
|
|
|
|
<div class="questionnaire-header">
|
|
|
|
|
<h1 id="questionnaire-title"></h1>
|
|
|
|
|
<p id="questionnaire-description"></p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<form id="poll-form">
|
|
|
|
|
<div id="questions-container"></div>
|
|
|
|
|
|
|
|
|
|
<div class="form-actions">
|
|
|
|
|
<button type="submit" class="btn btn-primary">Отправить ответы</button>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<div id="results-container" style="display: none;">
|
|
|
|
|
<h2>Спасибо за участие!</h2>
|
|
|
|
|
<p>Ваши ответы были успешно отправлены.</p>
|
|
|
|
|
|
|
|
|
|
<div class="poll-results">
|
|
|
|
|
<h3>Текущие результаты:</h3>
|
|
|
|
|
<div id="poll-results-container"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-03-12 09:12:09 +03:00
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
// Добавляем корректные пути к ссылкам после загрузки страницы
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
|
|
|
// Определяем базовый путь с учетом /ms в продакшен-версии
|
|
|
|
|
const isMsPath = window.location.pathname.includes('/ms/questioneer');
|
|
|
|
|
const basePath = isMsPath ? '/ms/questioneer' : '/questioneer';
|
|
|
|
|
|
|
|
|
|
// Устанавливаем правильные ссылки
|
|
|
|
|
document.getElementById('nav-home-link').href = basePath;
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2025-03-11 23:50:50 +03:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|