Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Index_GUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ def inp_text():
text_input = StringVar()
text_entry = Entry(window, textvariable = 'text_input', border= 1,font = (20))
window.title('Attendance Management System')#Ploting the titlte
label = Label(window,text= 'Welcome To Attendance Management System',font = ('bold',16))#ploting the label
btn = Button(window, text = 'To show all defaulter',command = output_database )
btn2 = Button(window, text = 'To show Specific Graph Data',command = inp_text)
btn3 = Button(window, text = 'To Show All Data',command = all_data)
label = Label(window,text= 'Welcome To Attendance Management System',font = ('arial bold',20))#ploting the label
btn = Button(window, text = 'All defaulter',command = output_database ,font = ('arial bold',12) ,bg="red",fg="white")
btn2 = Button(window, text = 'Graph Data',command = inp_text ,font = ('arial bold',12),bg="white",fg="black")
btn3 = Button(window, text = 'All Data',command = all_data,font = ('arial bold',12),bg="black",fg="white")

op = Listbox(window, height = 10, width = 100, border = 0)

Expand All @@ -45,7 +45,7 @@ def inp_text():
op.configure(yscrollcommand = scroll.set)
scroll.configure(command = op.yview)

clr_btn = Button(window, text = 'CLear', command = clear_text )
clr_btn = Button(window, text = 'Clear', command = clear_text ,font = ('arial bold',12),bg="black",fg="white")
label.pack()

btn.place(x = 30, y = 50 )
Expand Down