chatbox2 / templates /index.html
jacobinathanialpeterson's picture
Rename chatbox/index.html to templates/index.html
482c1a9
raw
history blame
620 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chatbox</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="chat-container">
<div class="chat-messages" id="messages"></div>
<div class="chat-input">
<input type="text" id="nameInputBox" placeholder="Your Name">
<input type="text" id="messageInputBox" placeholder="Type a message...">
<button onclick="postMessage()">Send</button>
</div>
</div>
<script src="{{ url_for('static', filename='script.js') }}"></script>
</body>
</html>