Spaces:
Sleeping
Sleeping
File size: 547 Bytes
4f2d993 cb29e48 4f2d993 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AI Interview Bot</title>
<link rel="stylesheet" href="static/style.css" />
</head>
<body>
<h1>🎤 AI Interview Bot</h1>
<video id="localVideo" autoplay muted playsinline></video>
<div id="chat">
<div id="messages"></div>
<input id="userInput" placeholder="Type your answer..." />
<button onclick="sendAnswer()">Send</button>
</div>
<button id="startInterview">Start Interview</button>
<script src="static/interview.js"></script>
</body>
</html>
|