Spaces:
Sleeping
Sleeping
File size: 499 Bytes
cc9d4a0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
<!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>
|