models.py from django.db import models from django.contrib.auth.models import User Create your models here. class Profile(models.Model): user = mode
I'm trying to implement Google sign in using DRF and dj_rest_auth. I've set up 'django-allauth' with Google as provider and the sign in process works in the web
I'm using dj-rest-auth with react and i'm trying to use the frontend url instead of the backend url. The solution i am using for the account creation confirmati