|
- {# templates/registration/confirm_error.html.twig #}
- <!DOCTYPE html>
- <html lang="de">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>{{ 'app.confirm_error.page_title'|trans }}</title>
- {{ encore_entry_link_tags('app') }}
- </head>
- <body class="register-body">
-
- {% embed '_components/register-card.html.twig' %}
- {% block content %}
- {% include '_components/register-success.html.twig' with {
- icon: '✕',
- modifier: '--error',
- title: 'app.confirm_error.title'|trans,
- text: error,
- btn_href: path('app_register'),
- btn_label: 'app.confirm_error.btn_retry'|trans,
- } %}
- {% endblock %}
- {% endembed %}
-
- </body>
- </html>
|