[Fixed]-Django email account activaiton

1👍

Your activation token does not accept hyphens, and it is only matching a single character. It should be:

(?P<activation_token>[0-9A-Za-z-]+)

Note you could change it from a-z to a-f since the token is a uuid.

Leave a comment