Try-On-uetp / templates /result.html
alamx's picture
Upload 4 files
6b135d2 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Try-On Result</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
text-align: center;
}
.result-container {
background-color: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
.result-img {
max-width: 100%;
max-height: 500px;
margin: 20px 0;
border: 1px solid #ddd;
}
.btn {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
text-decoration: none;
display: inline-block;
margin-top: 20px;
}
.btn:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="result-container">
<h1>Your Virtual Try-On Result</h1>
<img src="{{ result_image }}" alt="Virtual try-on result" class="result-img">
<br>
<a href="/" class="btn">Try Another</a>
</div>
</body>
</html>