Thanks for the new project. at 4:26 regarding re-setting of password, it would be better if it is verified through e-mail access which is practiced in professional password reset system to be more secured.. Pls. think about it.
@@codinglifestyle4u Thanks for your reply. but other person may know my email address ( e-mail is nothing seret) so anyone who knows my email , he can reset my pw easily. That's why there is system either email verification or one time pass code through email or mobile. Hope I could make you understand.
@@codinglifestyle4u if there is a possibility to connect that GUI to online world. I think SUBORNO want it to at least put a verification code entry during the reset process. If verification code did not matched even if the email is correct then there's no way that the user can save the changes of the password, however when the user tried to reset a password using an email that never exist on the app there should be an error message telling the user that the email can't be able to receive verification code 'cos it didn't exist on the database.
I am new to Python, so I don't fully understand how things work. Everytime I attempt to add the Pillow module, it says ModuleNotFoundError: No module named 'PIL' I have uninstalled it multiple times. What needs to be done?
I have a little problem with all the borders. Even if I have put bd=0 I still have a little grey border around my entry zone that become black when I click on it and I don't know how to solve it. Also the background of every button don't want to change color.
To remove the grey border around an entry widget in Tkinter, you can set the highlightthickness to 0. Here's an example: entry = Entry(root, bd=0, highlightthickness=0) This should remove the grey border that appears around the entry widget. Regarding the background color of the button not changing, make sure that you are using the correct option for setting the background color. The option for background color in Tkinter is 'bg' or 'background' button = Button(root, text="Button", bg="red")
good day sir, from the very beginning mine is throwing an attribute error: AttributeError: 'PhotoImage' object has no attribute '_PhotoImage__photo'. Please may i know what i may be doing wrong?
sir whenever i add root.geometry or add font size it shows error and in error it take error from another file where python is install or that file when comes how to solve that it run only my commands not from other file
When i try to move from one window to other it give me this error NameError: name 'SignUp' is not defined my file are ipynb file please guide me i can't change them to py file because i'm working in jupyter notebook
pip install nbconvert Convert the .ipynb file into a Python script using the nbconvert command-line tool. For example: jupyter nbconvert --to script notebook.ipynb This will create a .py file with the same name as your notebook. And then simply import notebook
35:20 would be easier to have just one def with elif ? def on_enter(event): if user_entry.get() == 'username': user_entry.delete(0, END) elif pass_entry.get() == 'password': pass_entry.delete(0, END)
add this as well... elif user_entry.get() == '': user_entry.insert(0, "Username") elif pass_entry.get() == '': pass_entry.insert(0, "Password") add this to keep the label available whenever one of the text box is empty.
@@codinglifestyle4u thank you more for having this patience to create such long video just to teach us on how to design that beautiful log in user interface.
Hii , I have tried a lot of python projects on RUclips but yours is the best since I am able to understand it really well. Keep it up. But please can I get a link to download the background images and logo you used for this project? Since I have searched everywhere but can't find a good one. Thanks
Can i get your linkedIn profile ??? I want to connect with you on LinkedIN. Because the way you explain the things in this project is really incredible 😍😍 , your explanation is very easy to understand and easy to grasp!!!
from tkinter import * from PIL import ImageTk if you have .png or .gif you can use just Photoimage - (Tkinter) For other formats as .jpeg , .bmp and others you use ImageTk.PhotoImage(file="image name") - (Pillow)
Aapka Mel mein WhatsApp number likh diya hun aur apna email id bhi usi mein add kar diya St mein according file mujhe bhej dijiyega taki mein bhi yah video dekhkar shikshakon aap ko dene ke liye dhanyvad Iske sath ISI mein aapka 4 video mein banae hain kya Charon ka coding file mujhe bhej dijiye aapka dene ke liye mujhe dhanyvad kar raha hun sir thank you❤❤
Awesome bro Really very clearly this Vedio
Thanks 😀
Amazing keep it up but you forget to drop the imaga
Haha I added thanks for reminding me 😊
Good day, what if i'd like to encrypt data insert when signup to database?
You can use the 'bcrypt' module to encrypt the data, for more information search on google how to use it
Thanks for the new project. at 4:26 regarding re-setting of password, it would be better if it is verified through e-mail access which is practiced in professional password reset system to be more secured.. Pls. think about it.
Password is reset only when u will enter the correct email which u entered while sign up
@@codinglifestyle4u Thanks for your reply. but other person may know my email address ( e-mail is nothing seret) so anyone who knows my email , he can reset my pw easily. That's why there is system either email verification or one time pass code through email or mobile. Hope I could make you understand.
Ok got it ill try :)
@@codinglifestyle4u if there is a possibility to connect that GUI to online world. I think SUBORNO want it to at least put a verification code entry during the reset process. If verification code did not matched even if the email is correct then there's no way that the user can save the changes of the password, however when the user tried to reset a password using an email that never exist on the app there should be an error message telling the user that the email can't be able to receive verification code 'cos it didn't exist on the database.
I am new to Python, so I don't fully understand how things work. Everytime I attempt to add the Pillow module, it says ModuleNotFoundError: No module named 'PIL' I have uninstalled it multiple times. What needs to be done?
Install module by going into
Files- settings -project-python interpretor - click on plus icon - search for the module and install
Sir, you completely ROCK! I have it working within the PyCharm IDE; Visual Studio Code is still out-of-sync.
Great 😃
@@codinglifestyle4u oleh ol
@@codinglifestyle4u o
26:58
def on_enter(enter):
if usernameentry.get()=="username":
usernameentry.delete(0,-1)
usernameentry('',on_enter())
throwing
TypeError: on_enter() missing 1 required positional argument: 'enter'
fix needed asap.
def on_enter(event):
if usernameentry.get() == "username":
usernameentry.delete(0, 'end')
usernameentry.bind('', on_enter)
@@codinglifestyle4u thanks found out the fix my bad. missed the bind.
I have a little problem with all the borders. Even if I have put bd=0 I still have a little grey border around my entry zone that become black when I click on it and I don't know how to solve it. Also the background of every button don't want to change color.
To remove the grey border around an entry widget in Tkinter, you can set the highlightthickness to 0. Here's an example:
entry = Entry(root, bd=0, highlightthickness=0)
This should remove the grey border that appears around the entry widget.
Regarding the background color of the button not changing, make sure that you are using the correct option for setting the background color. The option for background color in Tkinter is 'bg' or 'background'
button = Button(root, text="Button", bg="red")
@@codinglifestyle4u thanks it is working now
good day sir, from the very beginning mine is throwing an attribute error: AttributeError: 'PhotoImage' object has no attribute '_PhotoImage__photo'. Please may i know what i may be doing wrong?
Can u send me the error pic on instagram coding_lifestyle_4u
@@codinglifestyle4u I've sent you the message sir and you haven't replied
I replied
i am getting the same error please help me
sir im getting the same error please help me as i have to submit my project tomorrow@@codinglifestyle4u
what app did you use to create a log in page and how to install?
I have used the community version of pycharm
I hv used ,icon-icon to get the background image u used in project and can't get fine it?
Can u show me the pic of what u r trying to do on instagram coding_lifestyle_4u
sir whenever i add root.geometry or add font size it shows error and in error it take error from another file where python is install or that file when comes how to solve that it run only my commands not from other file
Send me the error pic on instagram coding_lifestyle_4u
When i try to move from one window to other it give me this error NameError: name 'SignUp' is not defined my file are ipynb file please guide me i can't change them to py file because i'm working in jupyter notebook
pip install nbconvert
Convert the .ipynb file into a Python script using the nbconvert command-line tool. For example:
jupyter nbconvert --to script notebook.ipynb
This will create a .py file with the same name as your notebook.
And then simply
import notebook
which application is used to do the program mean the program part which you are doing
Pycharm
can you please show how you connect mysql with python and also please great a python project that will connect to sql/mysql database please
Plz watch the videos i have explained how to connect python with mysql
How can I add an API to this program
35:20 would be easier to have just one def with elif ?
def on_enter(event):
if user_entry.get() == 'username':
user_entry.delete(0, END)
elif pass_entry.get() == 'password':
pass_entry.delete(0, END)
Yes 👍
add this as well...
elif user_entry.get() == '':
user_entry.insert(0, "Username")
elif pass_entry.get() == '':
pass_entry.insert(0, "Password")
add this to keep the label available whenever one of the text box is empty.
Thanks Daniel
@@codinglifestyle4u thank you more for having this patience to create such long video just to teach us on how to design that beautiful log in user interface.
Thanks 👌 😊
All the best 😀
Hii , I have tried a lot of python projects on RUclips but yours is the best since I am able to understand it really well. Keep it up. But please can I get a link to download the background images and logo you used for this project? Since I have searched everywhere but can't find a good one. Thanks
Thank you, the images link is in the description of the video
Can you share the picture file you have used in this project?
Its there in the description of the video
Bro if possible we can use visual studio code for pycharam
Yes
Thanks for your kind information bro
having an exception name error although everything is proper kindly give some solution sir
What is the error? can u send me the pic on insta coding_lifestyle_4u
comment for inline coding will help for starters please Thank you
Thank you for your feedback I will take care of this next time onwards
At the time of 36:18 i can't get my login screen what will be the problem sir i don't have any error issue then why the screen is not coming sir???
Did u use the root.mainloop() method at the end?
@@codinglifestyle4u no sir after that only i came to the knowledge sir .i have made it crt and thanks for the quick response sir
Yeah my pleasure 😀
@@codinglifestyle4u 😄
Design page not getting,where should I get
Check the description
Can i do this in Idle instead of pycharm??
Yes you can
Can i get your linkedIn profile ??? I want to connect with you on LinkedIN. Because the way you explain the things in this project is really incredible 😍😍 , your explanation is very easy to understand and easy to grasp!!!
Thank you so much I don't have a LinkedIn profile yet
How do I connect login page to another page??when session is login..
You just have to import another python file just like we imported the login file when clicking on the signup button
@@codinglifestyle4u me try kr chuki hu but nh hua
Show me the code pic on insta coding_lifestyle_4u
37:20 ignore
Can I buy your code without using Indian money? I'm from Thailand.
If you have PayPal then ping me on instagram coding_lifestyle_4u
Is there a way without using any modules?
No
Can I get the code sir?
Text me on instagram coding_lifestyle_4u
how to convrt code into apk?
This is a desktop app
Ok...
If I write code for android then how to convert this code to apk.
Ask chatgpt I dont have any idea about android
@@codinglifestyle4u ok thanks
Can I use this application in my mobile
No, its only for desktop
Mujhe iska soch code chahie Jo video mein Bata rahe hain to 1 se 4 Tak aapka yah video hai yah Charon ka mujhe Kaun file chahie
Instagram pe msg karo 'coding lifestyle 4u'
@@codinglifestyle4u Instagram aapka nahin le raha
Instagram work nahin le raha hai aapka
coding_lifestyle_4u ..ye search karo
How to change size of the image😅
You can use the image resize method of tkinter ..u can search on google
But mari image small aarhi ha kya kru sir?
Konsi image ?
Can you provide source code link plzz....?
It would be better if you try to build it by watching tutorials
@@codinglifestyle4u but tomorrow is my submission and its an emergency so plzz can to provide it ?
Esi applications banao jo mobile me bhi chale please
Ok sure 😊
Thx
How do I get the pic tho🤧
It is in the description 😃
from tkinter import *
from PIL import ImageTk
if you have .png or .gif you can use just Photoimage - (Tkinter)
For other formats as .jpeg , .bmp and others you use
ImageTk.PhotoImage(file="image name") - (Pillow)
Thanks
@@codinglifestyle4u how do I get the back ground image
Thats in the description of the video
def show()
not working
Please rewatch and check where you have made the mistake
Sourcecode sir?
Ping me on instagram coding_lifestyle_4u
is it vs code
or pychem
Pycharm
can u do this using pycharm
Yes
broo can be in contact with u cuz i am currently working on a project where i am building a login and registration page in python
can you provide the source code link?
Sorry please build it by watching the tutorials
i cant download the images
The images are in the description.
Check the google drive link
Having an exception Tclerror
What is the complete error .
You can rewatch that part and see where you are making a mistake
Instagram search karke hi aapka wala mein jaate Hain to to nahin le raha hai
Text me ur whatsapp no. On my email
codinglyfstyle@gmail.com
Парень не умеет пользоваться булевой логикой.)
what the fuckk bro
Aapka Mel mein WhatsApp number likh diya hun aur apna email id bhi usi mein add kar diya St mein according file mujhe bhej dijiyega taki mein bhi yah video dekhkar shikshakon aap ko dene ke liye dhanyvad
Iske sath ISI mein aapka 4 video mein banae hain kya Charon ka coding file mujhe bhej dijiye aapka dene ke liye mujhe dhanyvad kar raha hun sir thank you❤❤