A django app to create and use custom user profiles
Project description
Custom User Profile
Custom User Profile is a django app to create custom user model with the ability to register new users with custom forms and rich stylings.
Detailed documentation is in the 'docs' directory.
Quick Start
- Add 'users' to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...,
'users',
]
- Modify the AUTH_USER_MODEL setting in your settings.
AUTH_USER_MODEL = 'users.CustomUser'
- Include the users URLconf in your project urls.py like this:
urlpatterns=[
...,
path('users/', include('users.urls')),
]
- Run
python manage.py migrateto create the users models. - Start the development server and visit
http://127.0.0.1:8000/admin/to create a user. (You'll need the admin app enabled) - Visit http://127.0.0.1:8000/users/register to register new users.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
custom-user-profile-1.0.4.tar.gz
(11.1 kB
view details)
File details
Details for the file custom-user-profile-1.0.4.tar.gz.
File metadata
- Download URL: custom-user-profile-1.0.4.tar.gz
- Upload date:
- Size: 11.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24bcb72e5241aa87b7a3ac5a3e1f28861a389f0e68d543d687e5c845224fb6d7
|
|
| MD5 |
ed982bfb400b31e3bfae62dc27f74b1b
|
|
| BLAKE2b-256 |
aa06b7a55849bfa54b326ab43a93016604ca9e037790470196d9c8b503e4cc1f
|