mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-23 17:41:01 +00:00
33267f0736
Also remove some deprecation from Symfony. Use `LegacyEventDispatcherProxy` to handle Symfony 4 dispatch from FOSUser
11 lines
294 B
Twig
11 lines
294 B
Twig
{% extends "@FOSUser/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 %}
|