Spaces:
Running
Running
File size: 3,989 Bytes
3d5fdc4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
<!DOCTYPE html>
<html>
<head>
<title>Generated Image</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
body {
background-color: #000000;
color: #ffffff;
font-family: Arial, sans-serif;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px;
background-color: #222222;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
margin-bottom: 30px;
}
.image-container {
text-align: center;
margin-bottom: 30px;
}
img {
max-width: 100%;
height: auto;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.button-container {
text-align: center;
margin-top: 30px;
}
.btn {
background-color: #4CAF50;
color: #ffffff;
padding: 12px 24px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #45a049;
}
.image-details {
text-align: center;
margin-top: 30px;
font-size: 16px;
}
.social-buttons {
text-align: center;
margin-top: 30px;
}
.social-button {
display: inline-block;
margin-right: 10px;
}
.social-icon {
color: #ffffff;
font-size: 24px;
transition: color 0.3s ease;
}
.social-icon:hover {
color: #4CAF50;
}
/* Responsive Styles */
@media only screen and (max-width: 500px) {
.container {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Generated Image</h1>
<div class="image-container">
<img src="{{ url_for('static', filename='example.jpeg') }}" alt="Generated Image">
</div>
<div class="button-container">
<a href="/static/example.jpeg" class="btn btn-success" onclick="downloadImage()"><i class="fas fa-download"></i> Download Image</a>
</div>
<div class="image-details">
<p>Image Size: 1200x800 pixels</p>
<p>File Format: JPEG</p>
</div>
<div class="social-buttons">
<span class="social-button">
<a href="https://www.facebook.com/octaeldrith" class="social-icon"><i class="fab fa-facebook"></i></a>
</span>
<span class="social-button">
<a href="https://twitter.com/ims_eldrith" class="social-icon"><i class="fab fa-twitter"></i></a>
</span>
<span class="social-button">
<a href="https://www.instagram.com/ims_eldrith" class="social-icon"><i class="fab fa-instagram"></i></a>
</span>
<span class="social-button">
<a href="https://linkedin.com/in/ashiq-hussain" class="social-icon"><i class="fab fa-linkedin"></i></a>
</span>
</div>
</div>
<script>
function downloadImage() {
var link = document.createElement('a');
link.href = '/static/example.jpeg';
link.download = 'generated_image.jpg';
link.click();
}
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html> |