On a system I have developed It requires me to login using a standard and simple username and password combination.
The system I use is Django does anyone know how I can kill this session so that when a user presses log off it invokes the login screen again.
Cheers,
If you are using the default authentication system
django.contrib.auth, you simply need to create a view that callsdjango.contrib.auth.logout()and wire a url to it.Luckily, the
authapp already has a view that does this, so you simply need to redirect the user to