views:

35

answers:

1

What is the best way to allow a member to cancel their account? Should I simply have them click a cancel button on the site?

+1  A: 

Hi,

Have a button or something that allows canceling the account with confirmation so that the user doesn't cancel by mistake. Also don't delete the account, have deleted flag in the users table so you can reactivate that account if needed.

Regards, Alin

Alin Purcaru
There's privacy issues with not really deleting an account. A better compromise would be a "deleted" flag with a date on it, and then _really_ deleting after two weeks.
Tomer Vromen