This commit is contained in:
Roobini-192421114 2026-05-11 09:53:33 +05:30 committed by GitHub
commit 0b416d06e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 17 additions and 0 deletions

6
README
View File

@ -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.

4
dashboard.py Normal file
View File

@ -0,0 +1,4 @@
def dashboard():
print("Dashboard Feature Added Successfully")
dashboard()

7
login.py Normal file
View File

@ -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"))