{% extends "layout_inicio.html.twig" %}
{% block javascripts %}
{{ parent() }}
{% if logout is defined %}
<script type="text/javascript">
window.setTimeout(function() {
document.location.href = '{{ path('app_logout') }}';
}, 3*1000);
</script>
{% endif %}
{% endblock %}
{% block content %}
{% if kind is not defined %}
{% set kind = 'danger' %}
{% endif %}
<div class="alert alert-{{ kind }}">
<strong>
<i class="ace-icon fa fa-info-circle bigger-150"></i>
{% if error_cod is defined %}{{ error_cod | raw }} {% endif %}
</strong>
<br>
</div>
{% endblock %}