interview-bot / index.html
gigswar's picture
Update index.html
4f2d993 verified
raw
history blame contribute delete
547 Bytes
<!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>