<div class="largura" id="notifications">
{% for message in app.flashes('error') %}
<div class="notification bg-danger animated fadeInRight delay-300ms">
<a href="#"><i class="fa fa-times close-notification"></i></a>
{{ message }}
</div>
{% endfor %}
{% for message in app.flashes('success') %}
<div class="notification bg-success animated fadeInRight delay-300ms">
<a href="#"><i class="fa fa-times close-notification"></i></a>
{{ message }}
</div>
{% endfor %}
{% for message in app.flashes('sucess') %}
<div class="notification bg-success animated fadeInRight delay-300ms">
<a href="#"><i class="fa fa-times close-notification"></i></a>
{{ message }}
</div>
{% endfor %}
{% for message in app.flashes('fail') %}
<div class="notification bg-danger animated fadeInRight delay-300ms">
<a href="#"><i class="fa fa-times close-notification"></i></a>
{{ message }}
</div>
{% endfor %}
{% for message in app.flashes('success_alert') %}
<script>
$(document).ready(function () {
$.alert({
// icon: 'fa fa-warning',
title: null,
content: '{{ message }}',
type: 'green',
buttons: {
ok: {
text: 'OK',
btnClass: 'button green',
keys: ['enter', 'esc'],
action: function() {}
}
}
});
});
</script>
{% endfor %}
</div>