42 lines
2.0 KiB
PHP
42 lines
2.0 KiB
PHP
<?php
|
|
?><!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Burnout Survey & Analysis</title>
|
|
<meta name="description" content="AI-driven burnout survey that asks questions conversationally, analyzes responses, and provides structured results and charts. Built with Flatlogic Generator.">
|
|
<meta name="keywords" content="burnout survey, mental health, ai chatbot, stress analysis, employee wellness, self-assessment, mental wellbeing, burnout prevention, ai health, personalized advice, Flatlogic Generator">
|
|
|
|
<meta property="og:title" content="Burnout Survey & Analysis">
|
|
<meta property="og:description" content="AI-driven burnout survey that asks questions conversationally, analyzes responses, and provides structured results and charts.">
|
|
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
|
|
|
|
<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=Inter:wght@400;600&display=swap" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="chat-container">
|
|
<header class="chat-header">
|
|
<h1>Burnout Assessment</h1>
|
|
</header>
|
|
<main id="message-list" class="message-list">
|
|
<!-- Messages will be dynamically inserted here -->
|
|
</main>
|
|
<footer id="input-area" class="input-area">
|
|
<input type="text" id="user-input" placeholder="Type your answer..." autocomplete="off" disabled>
|
|
<button id="send-button" disabled>Send</button>
|
|
</footer>
|
|
</div>
|
|
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
|
|
</body>
|
|
</html>
|