Reputation: 361
I know django has default account related views. the urls for them can be found in django.contrib.auth.urls
. Is there a built in register view similar to those views? or do I have to implement one myself?
Upvotes: 4
Views: 1364
Reputation:
Yes, you have to implement it by yourself. In Django comes with a lot of built-in resources for the most common use cases of a Web application. Use this link
Upvotes: 3