diff --git a/gajim/gtk/dataform.py b/gajim/gtk/dataform.py
index a561f618185c216c61b5eba797c46110ea4b1a39..0aabca0d5abb3cca8536906e526b629a657de41b 100644
--- a/gajim/gtk/dataform.py
+++ b/gajim/gtk/dataform.py
@@ -220,7 +220,8 @@ def add(self, form_grid, row_number):
 
 class Instructions:
     def __init__(self, instructions):
-        self._label = Gtk.Label(label=instructions)
+        self._label = Gtk.Label()
+        self._label.set_markup(make_href_markup(instructions))
         self._label.set_line_wrap(True)
         self._label.set_line_wrap_mode(Pango.WrapMode.WORD)
         self._label.set_justify(Gtk.Justification.CENTER)