Yes i get name email password in register, i get email and password in login
7 Eylül 2019 Cumartesi 23:47:41 UTC+3 tarihinde Gabriel Stone yazdı: > > In your user creation form did you add an email field?if you did then only > can you query users by their email > > On Sat, Sep 7, 2019 at 22:36 göktürk sığırtmaç <[email protected] > <javascript:>> wrote: > >> I'm trying get user according to email. >> >> user = User.objects.get(email=email) >> >> >> if user is none, i will show message. I will check password after. But >> when i trying login with wrong email address for test i have error "User >> matching query does not exist.". How can i handle this error to convert >> message. I have tried this >> >> try: >> user = User.objects.get(email=email) >> except: >> user = None; >> >> >> if user is None: >> messages.warning(request, "Email hatalı") >> print("email is wrong") >> return render(request, "login.html", context) >> >> >> code but my each login attempt, i have message "e mail is wrong" >> >> >> -- >> 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] <javascript:>. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/django-users/985ce3b9-2810-48ef-9840-e18515109f4b%40googlegroups.com >> >> <https://groups.google.com/d/msgid/django-users/985ce3b9-2810-48ef-9840-e18515109f4b%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> > -- > Gabrielstone😎 > -- 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/449722c8-b307-4001-aac6-cf4102e30bb4%40googlegroups.com.

