Spaces:
Runtime error
Runtime error
<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> |