PY
py
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
import getpass, sys
open('.png','w')
print("""<style>
body {
background-color: #00ff00;
color: black;
}
img {
display:none;
}
</style>""")
if sys.stdin.isatty():
password1 = getpass.getpass("Using getpass")
if password1 == "BI6070":
print("Acess granted")
else:
for _ in range(1000000000):
print("Acess denied")
password = "Acess denied"
if password == "Acess denied":
print("System automatically locked")
password2 = getpass.getpass("System code")
if password2 == "BI1010":
print("Sytem unlock")
else:
print("Your not a user")
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run