[Solved]-Django-rest-auth reset password uid and token

10👍

You should configure your react router to get the params from url. For eg,

<Route path="reset/:uid/:token" component={PasswordResetView}/>

And then in your react view you can get these values like this.props.params.uid and this.props.params.token.

Leave a comment