CSF_ACW_1/Application/views/decode_result.html

21 lines
525 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RESULT</title>
</head>
<body>
<section>
<div>
<h1>Decoded</h1>
<img src="{{ url_for('upload', filename=image) }}" alt="Image Not Found">
</div>
<div>
<h1>Secret Text:</h1>
<p>{{ payload }}</p>
</div>
</section>
</body>
</html>