chat / templates /matchmaking.html
AliZain1's picture
Upload 9 files
96984e3 verified
raw
history blame contribute delete
817 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matchmaking</title>
</head>
<body>
<h1>Matchmaking Results</h1>
<a href="{{ url_for('chat') }}">Back to Chat</a>
<div id="matches">
{% if matches %}
{% for match in matches %}
<p>
<strong>{{ match.buyer }}</strong> wants to buy <strong>{{ match.product }}</strong>.
<strong>{{ match.seller }}</strong> wants to sell <strong>{{ match.product }}</strong>.
Contact them for matchmaking!
</p>
{% endfor %}
{% else %}
<p>No matches found.</p>
{% endif %}
</div>
</body>
</html>