#Python
#Tkinter
How To Create A Simple Registration Form Using Tkinter Python
This video shows how to create a simple login form using python with Tkinter.
Please See The Source Code Below:
from tkinter import *
root=Tk()
root.title("Registration Form")
tittlelabel=Label(root, text="Registration Form", font="arial 15")
tittlelabel.pack(pady=7)
f_namelabel=Label(root,text="First Name", font="arial 11")
f_namelabel.pack()
f_nameEntry=Entry(root,width=35)
f_nameEntry.pack()
l_nameLabel=Label(root, text="Last Name" ,font="arial 11")
l_nameLabel.pack()
l_nameEntry=Entry(root,width=35)
l_nameEntry.pack()
adressLabel=Label(root,text="Address", font="11")
adressLabel.pack()
adressEntry=Entry(root,width=35)
adressEntry.pack()
zipLabel=Label(root, text="Zip-Code", font=11)
zipLabel.pack()
zipEntry=Entry(root,width=35)
zipEntry.pack()
buttonreg=Button(root, text="Submit")
buttonreg.pack()
root.geometry("500x400")
root.mainloop()
Download
0 formats
No download links available.
How To Create A Simple Registration Form Using Tkinter Python Part 1 | NatokHD