17 lines
548 B
Python
17 lines
548 B
Python
from tkinter import *
|
|
from tkinter import ttk
|
|
|
|
class Home(Frame):
|
|
def __init__(self, parent, controller):
|
|
super().__init__(parent)
|
|
|
|
btn_frame = Frame(self)
|
|
btn_frame.pack()
|
|
|
|
employee_management_btn = Button(btn_frame, text='Employess Management', command=lambda: controller.frame_update('employee_manifest'))
|
|
employee_management_btn.pack(pady = (0,20))
|
|
|
|
signin_btn = Button(btn_frame, text='Sign in Register', command=lambda: controller.frame_update('sign_in'))
|
|
signin_btn.pack()
|
|
|