I am new to programming so I would like ask is there any way to redirect to this window. I have tried searching on youtube and google but it did not tell me anything that could be of use. I have a login window that I want to be redirected to this window after a successful login.
class Admin:
def __init__(self, root):
self.root = root
self.root.title("Covid 19 Admin Panel")
self.root.geometry("1510x780+0+0")
if __name__ == "__main__":
root = Tk()
ob = Admin(root)
root.mainloop()