File size: 476 Bytes
8a6df40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Final Image</title>
    <link rel="stylesheet" href="{{url_for('static', filename='./style.css')}}">
</head>
<body>
    
    <h1> Generated Image </h1>

    <div class="centerwrapper" id="centerwrapper">
        <button type="button" onclick="location.href='/' ">뒤로가기</button>
    </div>

    <p>
        <img src="{{url_for('static', filename='./finalimg.png')}}">
    </p>
</body>
</html>