mirror of
https://github.com/octocat/Hello-World.git
synced 2026-06-07 04:57:49 +00:00
Merge 324b9ddc95 into 7fd1a60b01
This commit is contained in:
commit
0b416d06e2
3 changed files with 17 additions and 0 deletions
6
README
6
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.
|
||||
|
|
|
|||
4
dashboard.py
Normal file
4
dashboard.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
def dashboard():
|
||||
print("Dashboard Feature Added Successfully")
|
||||
|
||||
dashboard()
|
||||
7
login.py
Normal file
7
login.py
Normal 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"))
|
||||
Loading…
Add table
Add a link
Reference in a new issue