Cara mengatur pesan flash di template html di aplikasi flask
<body>
{% for mesg in get_flashed_messages() %}
<h1>{{ mesg }}</h1>
{% endfor %}
</body>
Upal