Comment configurer le message flash dans le modèle HTML dans l'application FLASK

 <body>
      {% for mesg in get_flashed_messages() %}
      <h1>{{ mesg }}</h1>
      {% endfor %}
    </body>
Upal