06/15 Phase 1 + 2 codes

This commit is contained in:
2026-06-15 11:23:05 -04:00
commit c2064b84b4
62 changed files with 2937 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{% macro field(f) %}
<div class="field">
{{ f.label }}
{{ f(class="input") }}
{% if f.errors %}
<ul class="errors">
{% for e in f.errors %}<li>{{ e }}</li>{% endfor %}
</ul>
{% endif %}
</div>
{% endmacro %}
{% macro turnstile_widget(enabled) %}
{% if enabled and TURNSTILE_SITE_KEY %}
<div class="cf-turnstile" data-sitekey="{{ TURNSTILE_SITE_KEY }}"></div>
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
{% endif %}
{% endmacro %}