Great video.. I would be interested how this form can now be used to review data based on user name and submit additional data for it to be saved in a database? Is this something you can help at all or have you already got a video that refers to what I am looking above?
Pls make a vedio where after login user gets thier data which is stored somewhere in the pc and after the data gets displayed user can perform various functions link finding max , min , average or getting info of one row Assp 23:37
How did you underlined the #pip install pillow? I have been trying to underline it, but it doesnt allow me. Could you tell me what command did you use?
if your talking about the underline under pip install pillow comment, its not normal rather its a warning underline. if you hover over that , it'll tell you the warning.
Sorry can u help I have a problem that when I typed : command=self.check_function I am getting an AttributeError: 'Login' object has no attribute 'check_function' so can you help me
Thank you Tech2 etc , this tutorial was useful and benefit , if i want to make password as "********" how i can do it and the part of forgot password is it will be in forgetting section error code. Thanks again and keep going
As Tech2 said , check if there is any error in your code. If after re-checking, you don't see an error, did you go and import messagebox from tkinter? if not write from tkinter import messagebox. if you already have then try to re-check if there is any error in code
I don't know which error you are talking about but the command is used to tell that root will be used in the class 'login'. In the start, he made a class login, Try checking if your class login doesn't have any lowercase letters or any spelling errors.
There are multiple ways to make one Python file run another. 1. Use it like a module. import the file you want to run and run its functions. For example, say you want to import fileB. py into fileA. py, assuming the files are in the same directory, inside fileA you'd write import fileB Now in fileA, you can call any function inside fileB like: fileB.my_func() 2. You can use the exec command. execfile('file.py') executes the file.py file in the interpreter. 3. You can spawn a new process using the os.system command. For example os.system('python my_file.py') Hope you got what u are looking for....
All going well but when I call the function as self.check_function it's giving AttributeError: 'Login' object has no attribute 'check_function'. How to fix it. Pz reply
Sir I'm doing this in VS Code, but when I am importing the image I the image is not inserting. I can't do this in PyCharm because it is not opening. The window has suddenly grown very large. I have re installed it but nothing is happening. So sir çáñ you plēåse tell me why it is happening. Sir plsssss help me.
Sent a screenshot of the code and the error in our Facebook page or group. Without seeing the code it will be difficult to find out the error. I hope you understand.
please post a video on how to create a registration form next
and one that saves maybe into a database or a file :)
Sure bro
Also I want that video pls post it
🙏🙏🙏
@@Tech2etc Did you grant this request? if yes, where can i see the video please
Great video..
I would be interested how this form can now be used to review data based on user name and submit additional data for it to be saved in a database?
Is this something you can help at all or have you already got a video that refers to what I am looking above?
Pls make a vedio where after login user gets thier data which is stored somewhere in the pc and after the data gets displayed user can perform various functions link finding max , min , average or getting info of one row
Assp 23:37
Hello sir my code as is it like u bt my login function doesn't work give "attribute error" plzz reply
Thanks bro! It was straight forward!!!
Thanks for your explanation!
can I implement a movie catalog and voting system to this theoretically?
When I try to import the background I get a traceback call and whatever I do it won't function as expected😔
How did you underlined the #pip install pillow? I have been trying to underline it, but it doesnt allow me. Could you tell me what command did you use?
if your talking about the underline under pip install pillow comment, its not normal rather its a warning underline. if you hover over that , it'll tell you the warning.
thanks man your amazing!
Glad I could help!
I got error like no module named PIL...how to correct this bro
@@anishsaikatta thank you
thank you so much for this great vidoe sir
this can be done in an easy way but good video
Sorry can u help
I have a problem that when I typed : command=self.check_function I am getting an AttributeError: 'Login' object has no attribute 'check_function' so can you help me
How can it be possible to use this login form in my smartphone when I open it is demand username and password
Thank you Tech2 etc , this tutorial was useful and benefit , if i want to make password as "********" how i can do it and the part of forgot password is it will be in forgetting section error code.
Thanks again and keep going
what python version is this? my python doesnt function the same for some reason
Great work
Sir please tell me,how to add two are more employee name and password added in login system
did u figure it out?
Hi I have a problem it is saying attribute error photoimage has no attribute
Check out which version of image u are using...jpg or png? I mentioned it in the video...
Jpg only
it is PhotoImage. did you write with uppercase letters?
@@pacerbx3084 no I solved the problem the image I took was not jpeg so I converted it into jpeg and got it
@@harshavardan9054 Oh Alright then :)
Hi sir ! where user data will be store
how do u hide password characters show *****. please make a video of login and registration system that is connected to a database
In Entry box you have to add another attribute like show="*"
Hey, can you make a video on how to make a registration form and how to code forgot button please.
Ok, i will try it
@@Tech2etc Thank you very much!
Hi sir,I got the login window but i didn't get the messagebox. There is no error in that. Plz help me
Please check the button function code again. Also check the conditions.
As Tech2 said , check if there is any error in your code. If after re-checking, you don't see an error, did you go and import messagebox from tkinter? if not write from tkinter import messagebox. if you already have then try to re-check if there is any error in code
Can you please tell me kya isme backend h???
I know this was 2 years ago, but I'd be interested to know what comes next once logged in.
Sir command=self.check_fuction is not working in my button part?
check whether the code is ditto
submit = Button(Frame_login, command= self.check_function, cursor= "hand2", text="Login?", font=("Goudy old style", 15), bg="#6162FF",fg="white").place(x=90, y=320, width=180, height= 40)
Is this using django?
❤thank you
bro plz help command=self.check is not working, it says no such attributes, while typing .che "check" is not showing
For me same problem what we can do
What do you do if the background image cannot be found
Sir from where I can get whole source code for this project
when I write obj = Login it gives me an error like unsolved reference 'Login' how to fix it :(
Paste the full error message.
I don't know which error you are talking about but the command is used to tell that root will be used in the class 'login'. In the start, he made a class login, Try checking if your class login doesn't have any lowercase letters or any spelling errors.
Tutorial video is very fast, and i couldn't understand the area in " #pip install pillow". My program wasn't running after that part...
do that command in your terminal
how can i connect this login system with your registration form code?
There are multiple ways to make one Python file run another.
1. Use it like a module. import the file you want to run and run its functions. For example, say you want to import fileB. py into fileA. py, assuming the files are in the same directory, inside fileA you'd write
import fileB
Now in fileA, you can call any function inside fileB like:
fileB.my_func()
2. You can use the exec command.
execfile('file.py')
executes the file.py file in the interpreter.
3. You can spawn a new process using the os.system command.
For example
os.system('python my_file.py')
Hope you got what u are looking for....
@@Tech2etc thank you so much
All going well but when I call the function as self.check_function it's giving AttributeError: 'Login' object has no attribute 'check_function'. How to fix it. Pz reply
Same
What is #pip install pillow?
it allows the PIL you would have to type the pip install pillow command for it to work
how i can install pip install pillow?
In Pycharm, go to the run menu and beside 'Problems' and 'Python Packages' will be a 'terminal'. Go to the terminal and paste pip install pillow
Sir I'm doing this in VS Code, but when I am importing the image I the image is not inserting. I can't do this in PyCharm because it is not opening. The window has suddenly grown very large. I have re installed it but nothing is happening. So sir çáñ you plēåse tell me why it is happening. Sir plsssss help me.
The same
The forgot password button does nothing. Pls show smth for it
log in error, when logging in it doesn't work it says AttributeError: 'login' object has no attribute 'password' can you help me man?
Object ha no attribute 'get'
what a pity that there is no written code in the comments, it would speed up learning
Vs code me kr skte h
Messagebox is not showing bro..
How to open exe file in pycharm?
TypeError: Login() takes no arguments
please help
Check init spelling
Not clearly to show
is not like python can you gave me name or download link please
Good job
Thank u
Vaia how will i make another window if my login is successfull?
See how i made the first window. Then make another one like the first one. Then connect that window with the condition "if your login is successful".
Login object has no attribute username
Thank you
You're welcome
i have this error : 'Login' object has no attribute 'check_function'
We have the same error, but I fix mine check this 23:10
@@aoba983 thanks a lot
@@aoba983 I can't understand this in 23:18 he was selecting the command and then what he do?
Plz check init spelling
Awesome
Thank you
whats tkinter?
cool video
Thanks
is give me invalid syntax
Maybe u wrote something wrong. Please checkout the code again.
@@Tech2etc thank you very much ı was type from python ı was should type from pychram and new sub
BRO TypeError: Login() takes no arguments
please help
Sent a screenshot of the code and the error in our Facebook page or group. Without seeing the code it will be difficult to find out the error. I hope you understand.
@@Tech2etc I got it, bro.it is proper now, everything is going right
@@rahulpatil9699 Congrats bro.. Carry on!
@@rathinahs7001 make sure u give the same whitespace as i did.
bro i am getting errors can u send me ur code i will change my code plz plz
Code Link In my description.
Can u pls provide this code
In the description
@@Tech2etc I didn't found I mean it is asking to something
Getting error can you send me your source code sir
hello
It is not functional because you can see the password
👍👍💞
Thanks
costs money bruh
Sir video hindi me bnaya kro
💪
I wrote all code same as yours but when I run the login frame is not displaying I tried everything but couldnt fix it.
Did you download tkinter?
Thank you