fix signup scripts not being inserted into page

This commit is contained in:
justcool393 2023-07-27 18:37:28 -05:00 committed by Ben Rog-Wilhelm
parent a5e658ea42
commit 6e28a4e30c
2 changed files with 4 additions and 3 deletions

View file

@ -47,7 +47,7 @@
</button>
</div>
{% endif %}
{% block content %}{% endblock %}
{% block content required %}{% endblock %}
</div>
</div>
</div>
@ -59,5 +59,6 @@
</div>
</div>
</div>
{% block scripts %}{% endblock %}
</body>
</html>

View file

@ -53,9 +53,9 @@
</form>
</div>
{%- endblock -%}
{%- block scripts -%}
<script src="{{ 'js/signup.js' | asset }}"></script>
{% if hcaptcha %}
<script src="{{ 'js/hcaptcha.js' | asset }}"></script>
{% endif %}
{%- endblock -%}