The problem was because of this line:form = AddToCartProductForm(request)
I should have written this instead :
form = AddToCartProductForm(request.**POST**)
I had to take the POST from the request and give it to the AddToCartProductForm class.
Anyway, thank you.