daniel eidlin
daniel eidlin

Reputation: 361

Is there a Django built in signup view?

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

Answers (1)

user12966778
user12966778

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

https://simpleisbetterthancomplex.com/tutorial/2016/06/27/how-to-use-djangos-built-in-login-system.html

Upvotes: 3

Related Questions