Fix bad template name

When a user register, the template displayed saying it should now check its email was misspelled.
Resulting in displaying the default one (with margin issue).
This commit is contained in:
Jeremy Benoist
2016-09-30 21:02:44 +02:00
parent ca17abce2d
commit fb7354c4a4

View File

@ -0,0 +1,11 @@
{% extends "FOSUserBundle::layout.html.twig" %}
{% trans_default_domain 'FOSUserBundle' %}
{% block fos_user_content %}
<div class="card-content">
<div class="row">
<p>{{ 'registration.check_email'|trans({'%email%': user.email}) }}</p>
</div>
</div>
{% endblock fos_user_content %}