Best tutorial Ever. till now i have watched tutorial which used only inbuilt django login system. Nobody bothered to explained behind the scene things. Thank You hardik so much for explaining how to merge built in authentication and custom redirection.
@chenbi52586 жыл бұрын
Awesome django entry video! introduce things very explicit and easy to understand. I have to give you thumb up, bro.
@pablobustamantediaz6266 жыл бұрын
this is the only tutorial that show how to make a credential errors msg, thank you so much
@pramodmittal97614 жыл бұрын
Your tutorials are very informative.
@pinniramakrishna24676 жыл бұрын
Hi Hardik, Thank you for your helping in learn django. Can I use login and authentications without using inbuilt User model. That means shall i use login function by adding username and password columns to separate employee model.
@pinniramakrishna24676 жыл бұрын
Thank you I have another small doubt regards how to set time zone for India. Just what is value of TIME_ZONE in setting.py Is it "IST" or "Asia/Kolkata" or "IN" or another one?
@mohitthorat85805 жыл бұрын
@@pinniramakrishna2467 it is Asia/Kolkata
@vladimirmilanovic5576 жыл бұрын
So 'base.html' that you extend in login and success is your main web site page?
@syedaqifalirizvi44285 жыл бұрын
Abay yrr Button araam se press kr bhai Jazbaati insaan
@jehan1234565 жыл бұрын
can we use our own login template with this example ? I seemed to face issues with that so was wondering
@Kickass123564 жыл бұрын
are you using mysql database?
@shaumikghosh83646 жыл бұрын
Sir authenticate(request, email=email, password=password) not working, returning value error! give me a solution please! I want to use email instead of username
@mohit29424 жыл бұрын
sir how to implement this in ecommerce website
@mohit29424 жыл бұрын
@@HardikPatelN how??
@karimkazia5 жыл бұрын
Thank you very much. this was clear and to the point. loved it and have implemented my login page.
@adityasingh78465 жыл бұрын
My django intelligence ki not working can you pls suggest me how should i enable django intelligence in vs code . Pls pls pls
@Magistrado19144 жыл бұрын
Excellent course 02/10/2020
@suneelsharma59396 жыл бұрын
please post the video login with registration , the video of login what is created by you is for admin not for the any normal user who get register in the table
@HARISINGH-ci7mr4 жыл бұрын
I face a problem that I login only superuser. When I try to other user it does not login
@fillmusicandenjoymusic20914 жыл бұрын
Make Django tutoriyal in gujarati
@deepayanpal17035 жыл бұрын
facing an issue.! always returning into same page while giving valid data also. not going to target page
@khadimhusen5 жыл бұрын
Thanks you this tutorial, very informative.
@shriyabhonde19654 жыл бұрын
In urls.py, path('success', success, name="user_success") giving Name Error that name ''user_success" not defined Please someone help Thanks in advance!!
@RaviShankarvirat4 жыл бұрын
Can you please share the code
@suneelsharma59396 жыл бұрын
one complete video about , how to prevent back after logout, how to set session to validate login
@Realness-Behind-Life7863 жыл бұрын
Serializers ke saath login karke btayo
@ibtihelhacheni83655 жыл бұрын
i have done almost the same thing but when i make login nothing happens ! this is my function in the view, my data contains a lot of attributs but i choosed to make the login with email and password, i need help please def log_in_page(request): context={} if request.method=="POST": email=request.POST['email'] password=request.POST['password'] user= authenticate(request,email=email,password=password) if user: login(request,user) return HttpResponseRedirect(reversed('register_form')) else: context["error"]="Provide valid credentials" return render(request, 'ContratRegister/loginverif.html', context) else: return render(request,'ContratRegister/login.html',context)
@ibtihelhacheni83655 жыл бұрын
@@HardikPatelN ah ok i'll do it thank you so much
@pankajkulkarni35545 жыл бұрын
may i know code in form.py
@imransafdar1896 жыл бұрын
Thanx Hardik
@MsMousalsalat6 жыл бұрын
where is the source code of this project ???????
@kathanpatel36776 жыл бұрын
how can change password?
@michaelmike31285 жыл бұрын
Source code?
@kathanpatel36776 жыл бұрын
plz one more video sir change password
@salmanal-hasan12626 жыл бұрын
Pls give link source code of this video.. )
@salmanal-hasan12626 жыл бұрын
Thanks ..
@hr444444 жыл бұрын
Login password ? And I'd kya hai
@sudanbhandari77775 жыл бұрын
How to create Login, Logout without Using Django Authentication