19 lines
395 B
Twig
19 lines
395 B
Twig
{% extends 'auth.base' %}
|
|
|
|
{% block title %}{{ trans('auth.register.title') }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% for row in rows %}
|
|
{{ include(row) }}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|
|
{% block before_foot %}
|
|
<script>
|
|
Object.defineProperty(blessing, 'extra', {
|
|
configurable: false,
|
|
get: () => Object.freeze({{ extra|json_encode|raw }})
|
|
})
|
|
</script>
|
|
{% endblock %}
|