I am using Django registration app that sends email to the registered users for confirmation.
The default activation window is
ACCOUNT_ACTIVATION_DAYS = 7 # One-week activation window;
I want to keep the activation link open for two hours. After which, the link will be invalid.
how can I achieve this?