Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wakskev/custom-django-accounts-app

Custom User Management System in Django
https://github.com/wakskev/custom-django-accounts-app

accounts django user-management

Last synced: 20 days ago
JSON representation

Custom User Management System in Django

Awesome Lists containing this project

README

        

# Custom User Management System in Django

- A prebuilt basic accounts app template for managing users.
- The email (in place of the username) and password are used for authentication
- Customize it to your liking.
- Avoid all the hassle of thinking from scratch how to go about creating, listing, updating, deleting users, and logging in and logging out.

- Remember to add the following lines in your settings.py file:

``` python

AUTH_USER_MODEL = "accounts.User"

LOGIN_URL = "/login/" # your login url

```