register.html.twig 619 B

123456789101112131415161718192021222324
  1. {% extends 'partials/base.html.twig' %}
  2. {% set scope = scope ?: 'data.' %}
  3. {% block body %}
  4. <body id="admin-login-wrapper">
  5. <section id="admin-login" class="default-glow-shadow {{ classes }}">
  6. <h1>
  7. {{ title }}
  8. </h1>
  9. {% include 'partials/messages.html.twig' %}
  10. {% block instructions %}{% endblock %}
  11. <form method="post" action="{{ base_url_relative }}">
  12. <div class="padding">
  13. {% block form %}{% endblock %}
  14. {{ nonce_field('form', 'form-nonce')|raw }}
  15. </div>
  16. </form>
  17. </section>
  18. </body>
  19. {% endblock %}