tango with django ch12

来源:互联网 发布:linux远程访问数据库 编辑:程序博客网 时间:2024/06/05 05:10

User Authentication

install Django-Registration-Redux

sudo pip install django-registration-redux

修改installed_apps

INSTALLED_APPS = (   ...   'registration',   )

config urls.py

url(r'^accounts/',include('registration.backends.simple.urls'))

write template

# 在templates下新建registration文件夹# 在registration中新建login, logout, registration_form.html,# registration_complete.html, password_change.html,password_change_done.html 文件名和url对应,^accounts/ ^password/change/$ [name='auth_password_change']对应password_change.html
0 0
原创粉丝点击