20 lines
610 B
HTML
20 lines
610 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AI Interview Assistant</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<h3>AI Interview Assistant</h3>
|
|
<input type="password" id="apiKeyInput" placeholder="Enter your OpenAI API Key here">
|
|
<button id="saveApiKey">Save API Key</button>
|
|
<button id="toggleListening">Start Listening</button>
|
|
<div id="transcript"></div>
|
|
<div id="aiResponse"></div>
|
|
</div>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html> |