diff --git a/my-feature.py b/my-feature.py new file mode 100644 index 00000000..412c39a6 --- /dev/null +++ b/my-feature.py @@ -0,0 +1,6 @@ +# my-exam-1 +def login(username, password): + if username == "admin" and password == "1234": + return "Login Successful" + else: + return "Invalid Credentials"