diff --git a/users/forms.py b/users/forms.py
index d29d0bdd..33100c9d 100644
--- a/users/forms.py
+++ b/users/forms.py
@@ -411,9 +411,9 @@ class AdherentCreationForm(AdherentForm):
super(AdherentCreationForm, self).__init__(*args, **kwargs)
gtu_file = GeneralOption.get_cached_value('GTU')
self.fields['gtu_check'].label = mark_safe(
- "%s %s." % (
+ "%s %s." % (
_("I commit to accept the"),
- gtu_file.url if gtu_file else "https://en.wikipedia.org/wiki/Llama",
+ gtu_file.url if gtu_file else "#",
_("General Terms of Use")
)
)