Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Django tutorial - needs a signup page mdn#35484 (mdn#42327)
  • Loading branch information
Abhi-Sharma authored Dec 14, 2025
commit 668056c1a1f2950a734e9669e88c642b890bbf3e
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,11 @@ That's it! Now you have a "normal library member" account that you will be able

Django provides almost everything you need to create authentication pages to handle login, log out, and password management "out of the box". This includes a URL mapper, views and forms, but it does not include the templates — we have to create our own!

In this section, we show how to integrate the default system into the _LocalLibrary_ website and create the templates. We'll put them in the main project URLs.
In this section, we show how to integrate the default system into the _LocalLibrary_ website and create the templates.

> [!NOTE]
> Django does not include a built-in authentication view for initial user registration ("signup").
> You can create one yourself if needed, but for this tutorial we assume that only librarians are allowed to register users, and that they would do so using the Django admin interface.

> [!NOTE]
> You don't have to use any of this code, but it is likely that you'll want to because it makes things a lot easier.
Expand Down