Page not found (404)

Request Method: GET
Request URL: https://taskbird.ca/signup

Using the URLconf defined in taskbird.urls, Django tried these URL patterns, in this order:

  1. ^ login/<str:backend>/ [name='begin']
  2. ^ complete/<str:backend>/ [name='complete']
  3. ^ disconnect/<str:backend>/ [name='disconnect']
  4. ^ disconnect/<str:backend>/<int:association_id>/ [name='disconnect_individual']
  5. ^$ [name='siteIndex']
  6. ^features/?$ [name='siteFeatures']
  7. ^about/?$ [name='siteAbout']
  8. ^contact/?$ [name='siteContact']
  9. ^login/?$ [name='login']
  10. ^logout/?$ [name='logout']
  11. ^app/?$ [name='appIndex']
  12. ^api/?

The current path, signup, didn’t match any of these.

You’re seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.