hi
the data entered by a guest at the checkout is stored for the order, so there must be a way to force the guest to agree to some article (privacy policie), i think.![:) :)]()
The data entered is transfered to the server and there it is validated before the user checked the agreement. It is stored on the server memory temporarily. Is this correct?
I think it would be better if it was handled in this way for legal reasons:
1. checkout -> register -> enter data -> check agreement -> click next
2. client checks using javascript if agreement is checked (reduces server load for unchecked forms)
3. client sends agreement state to server on button press -> stored in session and validated
4. server sends answer to client if it's ok to send the remaining data
5. client sends the other data (adress, username, password etc.) to the server -> stored in session aswell and validated
6. server sends answers to client "this and that is not correct"
this way there is no data transfered if the user does not agree to the storage of them.
Thanks
the data entered by a guest at the checkout is stored for the order, so there must be a way to force the guest to agree to some article (privacy policie), i think.

The data entered is transfered to the server and there it is validated before the user checked the agreement. It is stored on the server memory temporarily. Is this correct?
I think it would be better if it was handled in this way for legal reasons:
1. checkout -> register -> enter data -> check agreement -> click next
2. client checks using javascript if agreement is checked (reduces server load for unchecked forms)
3. client sends agreement state to server on button press -> stored in session and validated
4. server sends answer to client if it's ok to send the remaining data
5. client sends the other data (adress, username, password etc.) to the server -> stored in session aswell and validated
6. server sends answers to client "this and that is not correct"
this way there is no data transfered if the user does not agree to the storage of them.
Thanks