Spaces:
Running
Running
<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> | |