All checks were successful
Deploy FluentGerman.ai / deploy (push) Successful in 53s
57 lines
2.2 KiB
HTML
57 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="FluentGerman.ai — Chat with your personal German tutor">
|
|
<title>FluentGerman.ai — Chat</title>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/dompurify@3/dist/purify.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Navbar -->
|
|
<nav class="navbar">
|
|
<div class="logo">FluentGerman.ai</div>
|
|
<div class="navbar-right">
|
|
<span class="navbar-user" id="user-name"></span>
|
|
<button class="btn btn-sm btn-secondary" id="logout-btn">Logout</button>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Chat -->
|
|
<div class="chat-container">
|
|
<div class="chat-messages" id="chat-messages">
|
|
<!-- Welcome section injected by JS -->
|
|
<div class="welcome-section" id="welcome-section">
|
|
<div class="welcome-row">
|
|
<div class="avatar-container" id="avatar-container">
|
|
<div class="avatar-ring"></div>
|
|
<div class="avatar-placeholder">🎓</div>
|
|
<div class="avatar-pulse"></div>
|
|
</div>
|
|
<div class="welcome-text">
|
|
<h2 class="welcome-greeting" id="welcome-greeting">Hallo! 👋</h2>
|
|
<p class="welcome-subtitle" id="welcome-subtitle">Your personal AI German tutor</p>
|
|
<p class="welcome-meta" id="welcome-meta"></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="chat-input-bar">
|
|
<button class="voice-btn" id="voice-btn" title="Voice input">🎤</button>
|
|
<input type="text" id="chat-input" placeholder="Type your message or click 🎤 to speak..."
|
|
autocomplete="off">
|
|
<button class="btn btn-primary" id="send-btn">Send</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/js/api.js"></script>
|
|
<script src="/js/voice.js"></script>
|
|
<script src="/js/chat.js"></script>
|
|
</body>
|
|
|
|
</html> |