code here:

def loginPage(request):
    if request.method == "POST":
        username = request.POST.get("username")
        password = request.POST.get("password")
        userLogin = authenticate(username=username, password=password)
        if userLogin is not None:
            login(request, userLogin)
            return redirect("home")
        else:
            messages.info(request, "Username or Password incorrect.")
    context = {"title": "User Login"}
    return render(request, "account/login.html", context)














*Lawal Tobiloba Samuel*

*Computer Engineer*

*Front-end Developer*

*IT Support Specialist*



*Mobile:     *+23480-6386-0181

                  +23481-2027-2000

*Email:        *[email protected]

                  [email protected]








On Mon, Apr 24, 2023 at 5:26 PM Lawal Tobiloba Samuel <
[email protected]> wrote:

> Hi devs,
> I wrote code for user authentication and login but I am not quite sure of
> it. On the web interface it keeps displaying username or password incorrect
> (message set in views.py).
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAAscozW9b%2B-RBrnBtNJMMdz5w%3DOStYRuW1mf35kaTBBva%2Br6Lg%40mail.gmail.com.

Reply via email to