
I'm pretty sure my regex is correct, but somehow it cannot capture the parameter and complaining no page found/match... I'm really stuck, if anyone can help me anything...heap thanks
This is the related part of my urls.py
from django.conf.urls import *
from django.conf.urls.static import static
from api.views.forgot_password import password_reset
url(r'^reset_password/(?P<auth>\w+)/(?P<email>\w+)/$', password_reset),