-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPMP.V.2.py
More file actions
61 lines (38 loc) · 2.29 KB
/
Copy pathPMP.V.2.py
File metadata and controls
61 lines (38 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from tkinter import *
roots = Tk()
roots.geometry("400x750")
roots.title("PMP")
roots["background"] = 'black'
def AC1():
print ("US = ammar.batea1@gmail.com \nPass = Ammar1234@Ammar")
def AC2():
print ("US = ammar.batea1@gmail.com \nPass = Anas@yasser123")
def AC3():
print ("US = ammar.batea1@gmail.com \nPass = Ammar1234@Ammar")
def AC4():
print ("US = yasser.batea1@gmail.com \nPass = Ammar123456a")
def AC_VI():
print ("US = ammar.batea@outlook.com \nPass = Ammar@anas1234")
def AC_VII():
print ("US = ammar.batea1@gmail.com \nPass = Ammar1234")
#---------------ROBLOX--------------
def AC5():
print("\nPASS = Ammaryb1234")
def AC6():
print("\nPASS = Hi Andrew Tate..BREATHE AIR")
def AC7():
print("\nPASS = Ammar1234@A")
def AC8():
print("\nPASS = saffa156")
Apple = Button(roots, text="Apple", fg="white" ,font="Tahoma 20 bold",bg="gray" , width=8, command=AC1).pack(padx=10, pady=10 )
Google = Button(roots, text="Google", fg="white" ,font="Tahoma 20 bold",bg="gray" , width=8, command=AC2).pack(padx=10, pady=10)
Xmindmap = Button(roots, text="Xmindmap", fg="white" ,font="Tahoma 20 bold",bg="gray" , width=8, command=AC_VII).pack(padx=10, pady=10)
outlook = Button(roots, text="OutLook", fg="white" ,font="Tahoma 20 bold",bg="gray" , width=8, command=AC_VI).pack(padx=10, pady=10)
discord = Button(roots, text="discord", fg="white" ,font="Tahoma 20 bold",bg="gray", width=8, command=AC3).pack(padx=10, pady=10)
FaceBook = Button(roots, text="FaceBook", fg="white" ,font="Tahoma 20 bold",bg="gray" , width=8, command=AC4).pack(padx=10, pady=10)
Roblox = Label(roots, text="Roblox", fg="Gold" ,font="Tahoma 30 bold",bg="gray" , width=14).pack(padx=10, pady=10)
ammarysser10 = Button(roots, text="ammarysser10", fg="white" ,font="Tahoma 15 bold",bg="gray" , width=12, command=AC5).pack(padx=10, pady=10)
Andrew_Tate776 = Button(roots, text="Andrew_Tate776", fg="white" ,font="Tahoma 15 bold",bg="gray" , width=15, command=AC6).pack(padx=10, pady=10)
Ohio_Ex = Button(roots, text="Ohio_Ex", fg="white" ,font="Tahoma 15 bold",bg="gray" , width=12, command=AC6).pack(padx=10, pady=10)
Saffa_Ragab = Button(roots, text="Saffa_Ragab", fg="white" ,font="Tahoma 15 bold",bg="gray" , width=12, command=AC7).pack(padx=10, pady=10)
roots.mainloop()