custom-user-profile 1.0.4

Creator: codyrutscher

Last updated:

Add to Cart

Description:

customuserprofile 1.0.4

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 migrate to 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.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.