drf-phone-email-auth icon indicating copy to clipboard operation
drf-phone-email-auth copied to clipboard

A Django boilerplate that provides a RESTful API interface for user registration and authentication using phone number and/or email.

Results 5 drf-phone-email-auth issues
Sort by recently updated
recently updated
newest added

Hi, I am getting error `django.urls.exceptions.NoReverseMatch: Reverse for 'redirect' not found. 'redirect' is not a valid view function or pattern name.` when creating user. ```python class UserRegisterationAPIView(RegisterView): """ Register new...

I really liked your project! Can you please help me implement the update of the User, so that when the email changes, a confirmation comes to the mail, and when...

#3 Admin page is broken this tripped me up too, guess this extra line in the readme should clear up this hiccup for future devs

Admin page won't let super users to login, even though they're on the db with all necessary rights. This fixed it for me: AUTHENTICATION_BACKENDS = [ ... 'django.contrib.auth.backends.ModelBackend', ... ]...

Hi great work my friend. I stared already. I'm having a problem with registration api point refusing to take only phone number. Though it says "Phone number or email &...