diff --git a/README b/README index 980a0d5..1033460 100644 --- a/README +++ b/README @@ -1 +1,7 @@ Hello World! + HEAD +This project demonstrates GitHub collaboration workflow using Git commands.This update is added using feature branch. +This line is added from main branch. +c529394 (Main branch update) + +This change is pushed to GitHub successfully. diff --git a/dashboard.py b/dashboard.py new file mode 100644 index 0000000..e7bf1e2 --- /dev/null +++ b/dashboard.py @@ -0,0 +1,4 @@ +def dashboard(): + print("Dashboard Feature Added Successfully") + +dashboard() \ No newline at end of file diff --git a/login.py b/login.py new file mode 100644 index 0000000..5ff3643 --- /dev/null +++ b/login.py @@ -0,0 +1,7 @@ +def login(username, password): + if username == "admin" and password == "1234": + return "Login Successful" + else: + return "Invalid Username or Password" + +print(login("admin", "1234")) \ No newline at end of file