Select Text read_text.html

uploaded_image.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Torn Edge Effect</title>
    <style>
        .image-container {
            display: flex;
            justify-content: space-around;
            margin: 20px;
        }
        .image-container img {
            max-width: 45%;
            height: auto;
        }
    </style>
</head>
<body style="background-color: cadetblue;">
    <center>
        <h1 style="color: orange;">FlaskArchitect's Torn Edge Effect</h1>
        <a href="{{ url_for('index') }}" class="refresh-button">HOME</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

        <div class="image-container">
            <div>
                <h2>Original Image</h2>
                <img src="{{ url_for('static', filename='archived-images/' + filename) }}" alt="Original Image">
            </div>
        </div>
    </center>       
</body>
</html>
Back to file list