-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.py
More file actions
19 lines (19 loc) · 566 Bytes
/
Copy pathmain.py
File metadata and controls
19 lines (19 loc) · 566 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
dis ="""Order Mangement System
This project is build fully on Python
You need to login with username: Administrator, password: 12345
Enjoy
"""
import Singin_page
from tkinter import *
root = Tk()
def goahead():
root.destroy()
Singin_page.start()
exit()
Label(root,text=dis,font=("Arial",12),fg=Singin_page.fg,bg=Singin_page.bg).pack()
Button(root,text="Go Ahead!!",font=("Arial",12),fg=Singin_page.fg,bg='black',command=goahead).pack()
root.title("HEllo There!!")
root.config(bg=Singin_page.bg)
root.geometry("500x250")
root.mainloop()
exit()