register.html.twig 828 B

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