1
url('^.*$', IndexView.as_view(), name='index'),
.*
in '^.*$'
, tells any url will go to this IndexView
and
you did’nt add url for your register page in url.py
url(r'^register/',views.yourview,name='givenameforthisurl')
Source:stackexchange.com