Skip to main content

A user app that introduce simple sign-in and sign-up.

Project description

django-user
-----------
1. django-admin.py startproject project
2. Configure your database in your settings file:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'project.db',
}
}

3. Install the package to your python site-packages folder or just use it as a module in your project.
4. Add 'user' to INSTALLED_APPS in your settings file.
5. Add 'django.contrib.admin' to INSTALLED_APPS in your settings file.
6. Configure yourt settings file further:
TEMPLATE_CONTEXT_PROCESSORS = (
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.request',
'django.core.context_processors.static',
'django.contrib.messages.context_processors.messages'
)
7. In settings.py remember to configure LOGIN_URL
8. python manage.py syncdb --settings=project.settings
9. In your projects urls add the following code:
from django.contrib import admin
admin.autodiscover()

from user import urls as user_urls

urlpatterns = patterns('',
...
url(r'^', include(user_urls)),
url(r'^admin/', include(admin.site.urls)),
...
)

10. python manage.py runserver --settings=project.settings
11. http://127.0.0.1:8000/sign-in
12. Django 1.5.1 compatible


Changelog:
----------
0.0.2
Bootstrap implemented
Nice feature design
More navigation

0.0.3
Profile and Sign Out processes

0.0.4
Change Password implementation

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

django-user-0.0.4.tar.bz2 (5.8 kB view details)

Uploaded Source

File details

Details for the file django-user-0.0.4.tar.bz2.

File metadata

  • Download URL: django-user-0.0.4.tar.bz2
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django-user-0.0.4.tar.bz2
Algorithm Hash digest
SHA256 1cb2f1fb65e621555588f987a977ce8e8efb94c92b6a5c462463149ecf508f8c
MD5 82d9d92d2b3bace076a305071723ee2f
BLAKE2b-256 98020ef27155292bb4c0718113258e3c7c7b24cc782566ca19e305c2e23e2850

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page