Re: User log in authentication problem in Django

2023-07-31 Thread AYUSH GUPTA
Why u create registration model for authentication because authentication model already included when u run command make migrations. U only import django.contrib.auth import User, authenticate and use On Sun, Jul 30, 2023, 7:02 AM Mh Limon wrote: > This is my views.py code. when providing the

Ynt: User log in authentication problem in Django

2023-07-31 Thread Serkan Gülten
Password should be hash not just string Windows için Posta ile gönderildi Kimden: Mh LimonGönderilme: 30 Temmuz 2023 Pazar 04:32Kime: Django usersKonu: User log in authentication problem in Django This is my views.py code. when providing the correct username and password, the system consistently

User log in authentication problem in Django

2023-07-29 Thread Mh Limon
This is my views.py code. when providing the correct username and password, the system consistently displays an error message stating "You have incorrect Username or password." from django.shortcuts import render,HttpResponse,redirect from .models import registration from django.contrib.auth