Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/wakskev/custom-django-accounts-app
- Owner: waksKev
- Created: 2024-02-10T09:50:48.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-02-10T10:47:16.000Z (12 months ago)
- Last Synced: 2024-11-21T14:29:12.628Z (2 months ago)
- Topics: accounts, django, user-management
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```