chatbot-web-app / chat.html
salomonsky's picture
Upload folder using huggingface_hub
c1c3e23 verified
raw
history blame contribute delete
613 Bytes
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chatbot</title>
<link rel="stylesheet" href="/static/css/styles.css">
</head>
<body>
<div class="chat-container">
<div id="chat-messages" class="chat-messages"></div>
<div class="chat-input">
<input type="text" id="user-input" placeholder="Escribe tu mensaje...">
<button id="send-button">Enviar</button>
</div>
</div>
<script src="/static/js/chat.js"></script>
</body>
</html>