From a8ff7c0607bd4fc41aa9b1a158d9daf23bc2a8ef Mon Sep 17 00:00:00 2001 From: Roobini-192421114 <192421114.simats@saveetha.com> Date: Tue, 28 Apr 2026 10:25:56 +0530 Subject: [PATCH 1/7] Add project description to README --- README | 1 + 1 file changed, 1 insertion(+) diff --git a/README b/README index 980a0d5..a7c5aa8 100644 --- a/README +++ b/README @@ -1 +1,2 @@ Hello World! +This project demonstrates GitHub collaboration workflow. From 43d4131f4e5e64641c94f2bc611dde0158b81583 Mon Sep 17 00:00:00 2001 From: Roobini-192421114 <192421114.simats@saveetha.com> Date: Tue, 28 Apr 2026 10:36:35 +0530 Subject: [PATCH 2/7] Add note about feature branch update --- README | 1 + 1 file changed, 1 insertion(+) diff --git a/README b/README index a7c5aa8..04dcb67 100644 --- a/README +++ b/README @@ -1,2 +1,3 @@ Hello World! This project demonstrates GitHub collaboration workflow. +This update is added using feature branch. From b14946e8ae15c1310e5e9ac584010d151f922f8c Mon Sep 17 00:00:00 2001 From: S ROOBINI Date: Thu, 30 Apr 2026 10:36:08 +0530 Subject: [PATCH 3/7] Main branch update --- README | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README b/README index 04dcb67..9b4f57a 100644 --- a/README +++ b/README @@ -1,3 +1,6 @@ Hello World! + HEAD This project demonstrates GitHub collaboration workflow. This update is added using feature branch. +This line is added from main branch. +c529394 (Main branch update) From bebae6ec505134e37d4d03f2df5123c5385293d2 Mon Sep 17 00:00:00 2001 From: roobini Date: Mon, 11 May 2026 09:29:31 +0530 Subject: [PATCH 4/7] Updated README file --- README | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README b/README index 9b4f57a..968b5e9 100644 --- a/README +++ b/README @@ -1,6 +1,5 @@ Hello World! HEAD -This project demonstrates GitHub collaboration workflow. -This update is added using feature branch. +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) From 9ba29ffb549e885dc5da6062d69a4fe01f673838 Mon Sep 17 00:00:00 2001 From: roobini Date: Mon, 11 May 2026 09:34:05 +0530 Subject: [PATCH 5/7] Updated README --- README | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README b/README index 968b5e9..1033460 100644 --- a/README +++ b/README @@ -3,3 +3,5 @@ Hello World! 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. From e5da0f477c4c1971ab61c7a16711d6dff20fe39d Mon Sep 17 00:00:00 2001 From: roobini Date: Mon, 11 May 2026 09:44:35 +0530 Subject: [PATCH 6/7] Added login function --- login.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 login.py 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 From 324b9ddc956fa056daecd72c1a45bf825124ab00 Mon Sep 17 00:00:00 2001 From: roobini Date: Mon, 11 May 2026 09:52:18 +0530 Subject: [PATCH 7/7] Added dashboard feature --- dashboard.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 dashboard.py 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