FreeChat / templates /index.html
1tbfree's picture
Create templates/index.html
cc9d4a0 verified
raw
history blame
499 Bytes
<!DOCTYPE html>
<html>
<head>
<title>FreeChat</title>
<style>
body { font-family: sans-serif; }
</style>
</head>
<body>
<h1>FreeChat</h1>
<form method="post">
<input type="text" name="message" placeholder="Type your message...">
<button type="submit">Send</button><br><br>
{% if message %}
<p><strong>You:</strong> {{ message }}</p>
{% if ai_response %}
<p><strong>Stranger:</strong> {{ ai_response }}</p>
{% endif %}
{% endif %}
</form>
</body>
</html>