Use new password reset URLs in client

This commit is contained in:
2020-06-23 21:01:21 +00:00
parent ca808e1d67
commit 942ecab890
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ function ConfirmForm() {
const handleSubmit = (e) => {
if (loading) return;
setLoading(true);
requester('/rest-auth/password/reset/confirm/', 'POST', '', input)
requester('/password/reset/confirm/', 'POST', '', input)
.then(res => {
setLoading(false);
setSuccess(true);