I have a form that is displaying well only for the label text that I don\'t want and I have tried all I could to let it off my form but it won\'t just go...
form
In __init__ method set your field label as empty.This will remove label text.
__init__
def __init__(self, *args, **kwargs): super(sign_up_form, self).__init__(*args, **kwargs) self.fields['email'].label = ""