flask_inference_api_g / show_image.html
DmitrMakeev's picture
Create show_image.html
37b358c verified
raw
history blame
690 Bytes
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Последнее изображение</title>
<style>
body {
font-family: sans-serif;
text-align: center;
margin-top: 50px;
background-color: #f0f0f0;
}
img {
max-width: 90%;
height: auto;
border: 2px solid #333;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
</style>
</head>
<body>
<h1>Последнее загруженное изображение</h1>
<div>
<img src="/last_image" alt="Последнее изображение">
</div>
</body>
</html>