+
+ {% if not current_user.is_authenticated %}
+ {% set create = url_for("auth.register") %}
+ {% set log_in = url_for("auth.sign_in") %}
+ {% call mc.p_warning() %}
+ Only registered users can save changes. Create an
+ account or sign in to save your
+ changes.
+ {% endcall %}
+ {% endif %}
{{ form.summary.label(class_="text-slate-600 mb-2 block") }}
{{ form.summary(class_="block rounded bg-white w-full mb-4 p-2",
placeholder=_("Fixed various OCR errors")) }}
@@ -77,18 +77,30 @@
"peer-checked:bg-slate-100 peer-checked:text-gray-800 peer-checked:border-gray-300") }}
+ {% if current_user.is_authenticated %}
{% set cc0 = "https://creativecommons.org/publicdomain/zero/1.0/" %}
{% trans %} By saving your changes, you agree to release your contribution under the CC0 (public domain) license. {% endtrans %}
+ + {% endif %}