I've created a Flask. It works fine if I use a direct link to Flask pages HTTP://flask_host:flask_port/.
If I'm using the same link inside of HTML iframe tags it returns an empty block (page is not showing)
<html>
<body>
<iframe src="HTTP://flask_host:flask_port/" name="iframe_a"></iframe>
</body>
</html>
What am I doing wrong?