|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<link rel="stylesheet" href="/static/style.css"> |
|
<script src="/static/script.js" defer></script> |
|
<title>ASK-ANRG</title> |
|
</head> |
|
<body> |
|
<div class="container"> |
|
<h1>ASK-ANRG</h1> |
|
<label for="api-key-input">API Key:</label> |
|
<input type="text" id="api-key-input" placeholder="Enter your API key..."> |
|
<div class="chat-box" id="chat-box"> |
|
|
|
</div> |
|
<input type="text" id="user-input" placeholder="Type your message..."> |
|
<button id="send-btn">Send</button> |
|
</div> |
|
</body> |
|
</html> |
|
|