register.html.twig 623 B

12345678910111213141516171819202122
  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. {% include 'partials/login-logo.html.twig' %}
  7. {% include 'partials/messages.html.twig' %}
  8. {% block instructions %}{% endblock %}
  9. <form method="post" action="{{ base_url_relative }}">
  10. <div class="padding">
  11. {% block form %}{% endblock %}
  12. {{ nonce_field('form', 'form-nonce')|raw }}
  13. </div>
  14. </form>
  15. </section>
  16. </body>
  17. {% endblock %}