Tauseed Zaman

Results 3 comments of Tauseed Zaman

I did not get any errors, make sure you have installed everything as given in the readme file

`class RegistrationForm(forms.Form): username = forms.CharField(max_length=150, widget=forms.TextInput(attrs={"class": "form-control form-control-lg"})) email = forms.EmailField(widget=forms.EmailInput(attrs={"class": "form-control form-control-lg"})) password = forms.CharField(widget=forms.PasswordInput(attrs={"class": "form-control form-control-lg"})) confirm_password = forms.CharField(widget=forms.PasswordInput(attrs={"class": "form-control form-control-lg"})) ` ` def clean_username(self): username = self.cleaned_data['username']...