27 lines
531 B
HTML
Executable file
27 lines
531 B
HTML
Executable file
{% include 'overall_header.html' %}
|
|
|
|
<center>
|
|
|
|
{% if loops.errors|length %}
|
|
<dl>
|
|
{% for ERROR in loops.errors %}
|
|
<dd class="error">{{ ERROR.TEXT }}</dd>
|
|
{% endfor %}
|
|
</dl>
|
|
{% endif %}
|
|
|
|
{% if LINKPROTECTION_PREVIEW %}
|
|
{% INCLUDE 'protected_page_preview.html' %}
|
|
{% endif %}
|
|
|
|
{% if LINKPROTECTION_SHOW_LINK %}
|
|
{% INCLUDE 'protected_page_link.html' %}
|
|
{% endif %}
|
|
|
|
{% if LINKPROTECTION_SHOW_CAPTCHA %}
|
|
{% INCLUDE 'protected_page_captcha.html' %}
|
|
{% endif %}
|
|
|
|
</center>
|
|
|
|
{% include 'overall_footer.html' %}
|