forked from pashayogi/VIP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSETAN.py
More file actions
68 lines (28 loc) · 751 Bytes
/
SETAN.py
File metadata and controls
68 lines (28 loc) · 751 Bytes
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
62
63
64
65
66
67
import os, sys
print ("\033[1;32mMasukin UserName&Password:)")
print ("\033[1;32mATAU HUBUNGI LANGSUNG MR.K7C8NG WHATSAPP = 082149735460 ")
username = 'MR.K7C8NG'
password = 'GANTENG1'
def restart():
ngulang = sys.executable
os.execl(ngulang, ngulang, *sys.argv)
def main():
uname = raw_input("username : ")
if uname == username:
pwd = raw_input("password : ")
if pwd == password:
print "\033[1;32mSAMPAI JUMPA",
sys.exit()
else:
print "\032[1;32mSorry Passwordmu salah cok !!!\033[00m"
print "Back Login\n"
restart()
else:
print "\033[1;32mSorry..anda noob !!!\033[00m"
print "Back Login\n"
restart()
try:
main()
except KeyboardInterrupt:
os.system('clear')
restart()