hi

im trying to use generic password_change. i log in and i go to change
password. when i click on pass change link im redirected to login
page, but im already loged in. so i think that something is not good
with my login page.

here is views.py login funct

def login_page(request):
    if request.POST:
        form = LoginForm(request.POST)
        if form.is_valid():
            data = form.clean_data
            user = authenticate(username=data['username'],
password=data['password'])
            if user is not None:
                if user.is_active:
                    return render_to_response('base.html',
{'user':user})
                else:
                    return render_to_response('login.html',
{'form':form, 'message':'Your account is disabled!'})
            else:
                return render_to_response('login.html', {'form':form,
'message': 'Your user name or password is incorect!'})
    form = LoginForm()
    return render_to_response('login.html', {'form':form})


tanks in advance!


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to