From 9e10cade4cb0c0c7a057a385989ad2b662725f3c Mon Sep 17 00:00:00 2001 From: NV-bit1923 Date: Sun, 13 Jul 2025 12:13:34 +0530 Subject: [PATCH] Create login.py This is the profile login program --- login.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 login.py diff --git a/login.py b/login.py new file mode 100644 index 00000000..aef6f8c3 --- /dev/null +++ b/login.py @@ -0,0 +1,8 @@ +correct_username= "Nilu" +correct_password= "1923" +username =input("enter username:") +password =input("enter password:") +if username == correct_username and password == correct_password: + print("login successful!wellcome",username) +else: + print("login failed! invalid username or password.")