django-react-redux-users-tutorial
django-react-redux-users-tutorial copied to clipboard
User Registration and Authentication with Django, Django Rest Framework, React, and Redux.
Results
1
django-react-redux-users-tutorial issues
Sort by
recently updated
recently updated
newest added
This is your code: from django.conf.urls import url from . import views urlpatterns = [ url(r'api/users^$', views.UserCreate.as_view(), name='account-create'), ] I have spent 2 hours looking for whats wrong. The correct...