django is authenticated code example
Example 1: django authenticate
from django.contrib.auth import authenticate
Example 2: from django.contrib.auth.decorators import authenticate, login
from django.contrib.auth import authenticate, login
Example 3: user login validation django
from django.contrib.auth import authenticate, login
def my_view(request):
username = request.POST['username']
password = request.POST['password']
user = authenticate(request, username=username, password=password)
if user is not None:
login(request, user)
...
else:
...