You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
607 B
17 lines
607 B
{% extends 'base.html.twig' %}
|
|
{% block container %}
|
|
|
|
<div class="container">
|
|
<div class="jumbotron text-center">
|
|
<h1 class="display-3">{{tarea[0].nombre}} completada!</h1>
|
|
<p class="lead"><strong>Gracias por completar el cuestionario {{ tarea[0].nombre }}</strong> vuelva a su <a href="{{ path('home') }}">dashboard</a> para continuar.</p>
|
|
<hr>
|
|
<p>
|
|
¿Algún problema? <a href="">Contactanos</a>
|
|
</p>
|
|
<p class="lead">
|
|
<a class="btn btn-primary btn-sm" href="{{ path('home') }}" role="button">Continuar al dashboard</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endblock container %}
|