{% extends "front/_common/_base.html.twig" %}
{% block linkcanonical %}
<link rel="canonical" href="{{ absolute_url(path('thanks')) }}">
{% endblock %}
{% block cssadicional %}{% endblock %}
{% block jsaditional %}
<script>
if (typeof fbq === 'function') {
fbq('track', 'CompleteRegistration');
}
</script>
{% endblock %}
{% block classbody %}{% endblock %}
{% block content %}
<section class="b30General">
<div class="wanchoSecondary">
<div class="b30GeneralWrap">
<div class="b30GeneralWrapLeft">
{% if message == 'thanks_claim' %}
{% if forms.graciasTitulo %}
<h4 class="b30GeneralTitle b30GeneralTitleP">{{ forms.graciasTitulo }}</h4>
{% elseif info.sentTitle1 %}
<h4 class="b30GeneralTitle b30GeneralTitleP">{{ info.sentTitle1 }}</h4>
{% endif %}
{% if forms.graciasTexto %}
<div class="b30GeneralText">
{{ forms.graciasTexto|raw }}
</div>
{% elseif info.sentText %}
<div class="b30GeneralText">
{{ info.sentText|nl2br }}
</div>
{% endif %}
<div class="b30ClaimCode">
<p><strong>Código de seguimiento:</strong> {{ claim_code }}</p>
</div>
<div class="b30GeneralBtn">
<a href="{{ path('home') }}" class="buttonStandard border">{{ info.sentButtonHomeText|default('Volver al inicio') }}</a>
<a href="{{ path('claim_pdf', {'uniq': claim_uniq}) }}" class="buttonStandard gray" target="_blank">Descargar PDF</a>
</div>
{% else %}
{% if info.sentTitle1 %}
<h4 class="b30GeneralTitle b30GeneralTitleP">{{ info.sentTitle1 }}</h4>
{% endif %}
{% if info.sentTitle2 %}
<h5 class="b30GeneralTitle b30GeneralTitleS">{{ info.sentTitle2 }}</h5>
{% endif %}
{% if info.sentText %}
<div class="b30GeneralText">
{{ info.sentText|nl2br }}
</div>
{% endif %}
<div class="b30GeneralBtn">
<a href="{{ path('home') }}" class="buttonStandard border">{{ info.sentButtonHomeText }}</a>
<a href="{{ path('trucks') }}" class="buttonStandard gray">{{ info.sentButtonModelsText }}</a>
</div>
{% endif %}
</div>
<div class="b30GeneralWrapRight">
<picture>
<img src="{{ asset(info.sentImage|image_path) }}" alt="{{ info.sentImage|image_alt }}">
</picture>
</div>
</div>
</div>
</section>
{% endblock %}
{% block jsfinal %}{% endblock %}