flask-demo / templates /results.html
heboya8's picture
Update templates/results.html
29b4ff7 verified
raw
history blame contribute delete
391 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Image Results</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<h1>Image Results</h1>
<div class="image-container">
<h2>Captured/Uploaded Image</h2>
<img src="{{ image }}" alt="Image">
</div>
<p><a href="{{ url_for('index') }}">Try another</a></p>
</body>
</html>