I suggest that you make 2 repositories. One for precoded project and one for the end results. If you have files ready to follow along the video it would be great. Great work by the way 🔥👍👍
Bro I was creating a website in django.. What i have to do is i need to create dynamic form filed and save its data.. For example.. In a resume website A person may have many skills so how can i create multiple inputs as the person clicks a button "Add more skills"..... And how to save it..in django..... And then fetch them all
Hi Codekeen, I appreciate the work you are doing. In a recent update from google they have disabled the the option to turn on less secure apps due to which I am not able to check whether my test email for forgot password is reaching or not, although I am able to get token for forgot password. Can you suggest any alternative so that I can get to check whether the email is reaching or not?
There is an alternate for less secure apps which is nothing but App passwords . You need to enable an option called windows emails ,then it will generate 16 digit random code . You have to copy and paste it to the host password in settings.py . It works great in both local and production environment .
Hai .I tried ur code.but the link is not sent to the email. But we can see the link in the terminal.from there I can change the password.but not send the link to email.kindly reply to sort out this problem 🙏
How do you put a token time for password reset? Let's say the user has 2 hours to reset the password, otherwise he has to make the request again to reset the password
brother , in login function we create (if not profile_obj.is_verified) this but there is an error ('NoneType' object has no attribute 'is_verified') this , how can i fix this .. i see your video again and again everything is match in this perticular condition ...
Ik it's late but helpful for someone who watch this comment.....Whenever you are filtering n it's not available in DB it return None, so None don't have the field of your DB model, simply add a if statement to check if the query is return None or Not
Im keep getting this error that get() got an unexpected argument, whenever i try to save token in forget_password_token. If somebody know please help me out
I'm getting an error which goes like this Im not able to figure out what's the problem... ive done "python3 manage.py makemigrations" "python3 manage.py migrate" also tried "python3 manage.py migrate --run-syncdb" still not able to create column in the database...... its actually working without that specific field ..... if anyone knows then plz help.....
It’s sad bro 😌 you didn’t updated update/fixed functionality on blog series .... which I have told you your update functionality is not correct 😞 I’m your regular viewer who watch your complete video on youtube 😞
wtf ??? if you had alredy verified user while submitting forget password form ? why do you again checking in paswword and confirm password with user id exist or not ? this is kinda funny ..what kin of logic is this ??
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_USE_TLS = True
EMAIL_PORT = 587
EMAIL_HOST_USER = 'email'
EMAIL_HOST_PASSWORD = 'password'
Github Link - github.com/boxabhi/youtube_reset_password_django
You guys don't believe but I made a django social media by learning this channel feeling very happy Abhijeet I am very thankful to you
Bhai mera nam Alauddin hai. Maine bahut koshish kya samajhne ab mujhe clear ho giya. Main ab kar sakta hoon. Thank you bhai.
Posted on right time sir... appreciate your work❤️
Thank you.. 😀
because of you I completed my project. well done bro
Great 👍
Thank you soo much. My code works perfectly
You're welcome!
Your tutorials are easy to understand. Thank you.
But not working 😞😞😞
Awesome Video Sir, your videos helped me a lot. #RightTime. ❤👌😊
😃
thank thank thank thank thank u brother
it help me a lot
Always welcome
I suggest that you make 2 repositories. One for precoded project and one for the end results. If you have files ready to follow along the video it would be great.
Great work by the way 🔥👍👍
Thanks .. sure from next videos I will keep this in mind
sir you are the best
Thanks ☺️☺️
Well Done Bro
Nice Job
Thank You Sir❤
Very helpful
Sir make a video on future of django and market jobs
Bro Django has a very great market. I will create a video for this.
Bro, you are reallly good. Please provide a link for github repo
Check the first comment its mentioned.
Bhai mera salary ke baad apko donate karenge bhai sure. Maine bahut kuch sikha hai apse.
Bro I was creating a website in django..
What i have to do is i need to create dynamic form filed and save its data..
For example..
In a resume website
A person may have many skills so how can i create multiple inputs as the person clicks a button "Add more skills".....
And how to save it..in django.....
And then fetch them all
for adding multiple-inputs you can use javascript and for storing data you can store it as a JSON (dict) response
@@CodeKeen if possible could u make a video on this buddy....its a heartly request.......it would be of great help...
Created only for you th-cam.com/video/Rcly7QHKYps/w-d-xo.html please share bro
@@CodeKeen bro....a lot of love from this side....❣️❣️❣️❣️❣️
@@CodeKeen This was the best help i got...... really blessings from my heart.......❣️❣️
Hi Codekeen, I appreciate the work you are doing. In a recent update from google they have disabled the the option to turn on less secure apps due to which I am not able to check whether my test email for forgot password is reaching or not, although I am able to get token for forgot password. Can you suggest any alternative so that I can get to check whether the email is reaching or not?
There is an alternate for less secure apps which is nothing but App passwords . You need to enable an option called windows emails ,then it will generate 16 digit random code . You have to copy and paste it to the host password in settings.py . It works great in both local and production environment .
Hai .I tried ur code.but the link is not sent to the email. But we can see the link in the terminal.from there I can change the password.but not send the link to email.kindly reply to sort out this problem 🙏
Thanks u bro
But database/model how u created token , ... Don't understand and u also don't tell about that
Sir, top 10 web developer TRANNING institute in india Plz make video. आपने कहा से सीखा
Sure i will upload a video of this
thank you so much
Sir forget password is not working
Bhaiya I need a video on Integration of Google map in django. And also on handling...
Sure
What's the url you are using in form to update password? Also, is there any github repo of this?
When the password reset is confirm then you have to delete the token from database
bhaiya , i register using django forms then how i save user_obj in profil
How to use with Mysql Database?
how I get data from the MySQL database to change passwords using email authentication?
apna bank account details micr ke sath bhejdo. kyu ki international payment jayega UAE se.
All the actions performed well but link was not send to the corresponding mail id
Plz make a video to upload and download file from database by django
interesting bro
do you have github repo for this??
Username and Password not accepted. I dont know why I have turned on low security apps too the also email is not sent.
EMAIL_HOST_USER = 'email' type here your email's email
EMAIL_HOST_PASSWORD = 'password' and your email's password
How do you put a token time for password reset? Let's say the user has 2 hours to reset the password, otherwise he has to make the request again to reset the password
how to perform change password for admin from the same code
brother ,
in login function we create (if not profile_obj.is_verified) this but there is an error ('NoneType' object has no attribute 'is_verified') this , how can i fix this .. i see your video again and again everything is match in this perticular condition ...
Same problems no working 😞😞
Bro I d download code but object user no working I don't know
Ik it's late but helpful for someone who watch this comment.....Whenever you are filtering n it's not available in DB it return None, so None don't have the field of your DB model, simply add a if statement to check if the query is return None or Not
7:24 forget password
i love you...
Im keep getting this error that get() got an unexpected argument, whenever i try to save token in forget_password_token. If somebody know please help me out
I always getting an Error of "Profile matching query does not exist' when i submit my username in forgot password
same error
Use email instead of username
got it too did you solve it ?
I'm getting an error which goes like this
Im not able to figure out what's the problem...
ive done "python3 manage.py makemigrations" "python3 manage.py migrate"
also tried "python3 manage.py migrate --run-syncdb"
still not able to create column in the database......
its actually working without that specific field .....
if anyone knows then plz help.....
Exception Type : OperationalError
Exception Value : no such colomn: app_accounts_profile.forgot_password_token
Have you added the app in settings.py?
Yes
@@atharvparkhe6384 delete migration folder and run makemigratioj nd migrate command
It’s sad bro 😌 you didn’t updated update/fixed functionality on blog series .... which I have told you your update functionality is not correct 😞 I’m your regular viewer who watch your complete video on youtube 😞
Sorry bro.. I didn't get time to record the video.. its the pre-recorded video which i uploaded yesterday. I will update your issue today
@@CodeKeen it’s ok ...no need to record bro just update the GitHub source I’ll will check Thanks for everything 🙏
@@AlphaSlyer87 Sure..
my bro how do add expired this token ???
Sir mail send nhi ho rha h or koi error bhi nhi a raha h
Use Django logger to get all the errors.
Hello, i need help. The email was sent but I cant reset the password
Same problems
how to add profile pic ?
wtf ??? if you had alredy verified user while submitting forget password form ? why do you again checking in paswword and confirm password with user id exist or not ? this is kinda funny ..what kin of logic is this ??
Bhai I am not getting email
What error you are getting?
@@CodeKeen bhai is there any other method to do forget password by writing our own code without using any inbuilt functions
pagal aadmi code toh dediya kr
БЛЯ ЛУЧШИЙ БРАТАН
{'new': (553, b'5.1.3 The recipient address is not a valid RFC-5321 address.
This error is coming