選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

27 行
745 B

  1. {# templates/registration/confirm_error.html.twig #}
  2. <!DOCTYPE html>
  3. <html lang="de">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>{{ 'app.confirm_error.page_title'|trans }}</title>
  8. {{ encore_entry_link_tags('app') }}
  9. </head>
  10. <body class="register-body">
  11. {% embed '_components/register-card.html.twig' %}
  12. {% block content %}
  13. {% include '_components/register-success.html.twig' with {
  14. icon: '✕',
  15. modifier: '--error',
  16. title: 'app.confirm_error.title'|trans,
  17. text: error,
  18. btn_href: path('app_register'),
  19. btn_label: 'app.confirm_error.btn_retry'|trans,
  20. } %}
  21. {% endblock %}
  22. {% endembed %}
  23. </body>
  24. </html>