Order of the formfield
Created by: PhoenixAndMachine
5 class SignupForm(MongoForm): 6 class Meta: 7 document = User 8 fields = ('username', 'email', 'password') 9 password = forms.CharField(widget=forms.PasswordInput, label="Your password") 10 repeat_password = forms.CharField(widget=forms.PasswordInput, label="Repeat password")
But the order of the form is username password email repeat_password