File size: 503 Bytes
b0dd51d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

<div class="topnav" id="myTopnav">
  <a href="/" class="active">Home</a>
  <a href="/audio_to_text/">Speech to Text</a>
</div>



{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
  {% for category,message in messages %}

    <div class="alert">
        <span class="closebtn" onclick="this.parentElement.style.display='none';">&times;</span> 
        <strong>{{category}} :</strong> {{ message }}
    </div>
  {% endfor %}
{% endif %}
{% endwith %}