This repository has been archived on 2026-01-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
DevDen/index.html

59 lines
2.0 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DevDen</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Login Screen (shown when not authenticated) -->
<div class="login-screen" id="loginScreen">
<div class="logo">
<span class="logo-dev">Dev</span
><span class="logo-den">Den</span>
</div>
<button class="login-btn" id="loginBtn">
Sign in with Microsoft
</button>
<div class="hint">Authenticate to continue</div>
</div>
<!-- Welcome Screen (shown after auth, centered) -->
<div class="welcome-screen hidden" id="welcomeScreen">
<div class="logo">
<span class="logo-dev">Dev</span
><span class="logo-den">Den</span>
</div>
<div class="input-container">
<div class="input-box">
<input
type="text"
id="welcomeInput"
placeholder="Ask anything..."
autocomplete="off"
/>
</div>
<div class="hint">Press <kbd>Enter</kbd> to send</div>
</div>
</div>
<!-- Chat Screen (shown after first message) -->
<div class="chat-screen hidden" id="chatScreen">
<div class="chat-messages" id="chatMessages"></div>
<div class="input-container chat-input">
<div class="input-box">
<input
type="text"
id="chatInput"
placeholder="Ask anything..."
autocomplete="off"
/>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>