Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a new BG function for the page after LOGIN #35

Merged
merged 1 commit into from
Dec 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ We want your work to be readable by others; therefore, we encourage you to note
2. Git : Git is a distributed version-control system for tracking changes in source code during software development. It is designed for coordinating work among programmers, but it can be used to track changes in any set of files.
* [Videos to get started](https://www.youtube.com/watch?v=xAAmje1H9YM&list=PLeo1K3hjS3usJuxZZUBdjAcilgfQHkRzW)
* [Cheat Sheet](https://www.atlassian.com/git/tutorials/atlassian-git-cheatsheet)
* [Kunal Kushwaha GIT tutorial](https://youtu.be/apGV9Kg7ics)

3. Python : Python is a high-level, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation.
* [Python Documentation](https://docs.python.org/3/download.html)


## 🤔Need more help?
Expand Down
5 changes: 5 additions & 0 deletions ContributorsList.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,9 @@ let contributors = [
name: "Sumit Bagchi",
linkedin: "https://www.linkedin.com/in/sumit-bagchi-b66576236/",
},
{
github: "https://github.com/KrishGaur1354",
name: "Krish Gaur",
linkedin: "https://www.linkedin.com/in/thatonekrish/",
},
];
1 change: 1 addition & 0 deletions Final.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,7 @@ def ticketShow(row):
)



def seat_book():
f4 = Frame()
f4.place(x=0, y=0, width=root.winfo_screenwidth(), height=root.winfo_screenheight())
Expand Down
11 changes: 7 additions & 4 deletions Login System Architecture/Final Page Navigation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# importing the required modules
from idlelib import window
from tkinter import *
import os
from tkinter import messagebox
Expand Down Expand Up @@ -32,12 +33,14 @@ def signIn():

if (username in r.keys() and password==r[username]):
screen=Toplevel(windows)
screen.title("Prototype")
screen.title("ApnaBharat")
screen.geometry('925x500+300+200')
screen.config(bg="white")
screen.config(bg="light blue")

Label(screen, text="Hey There ;)", bg='#fff', font=('Calibri(Body)', 50, 'bold')).pack(expand=True)
screen.mainloop()
img = PhotoImage(file='busproject.png')
Label(window, image=img, border=0, bg='blue')
# Label(screen, text="Hey There ;)", bg='#fff', font=('Calibri(Body)', 30, 'bold')).pack(expand=True)
# screen.mainloop()

# elif (username!='admin' and password!='1234'):
# messagebox.showerror("Invalid", "Both credentials are incorrect")
Expand Down
Binary file added Login System Architecture/busproject.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Login System Architecture/dataset.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{'Username': 'password', 'EDITH': 'code', 'FLASH': 'barry ', 'Deku': 'mha', 'tkinter': 'test', 'Google': 'cloud', 'Bruce': 'Wayne'}
{'Username': 'password', 'EDITH': 'code', 'FLASH': 'barry ', 'Deku': 'mha', 'tkinter': 'test', 'Google': 'cloud', 'Bruce': 'Wayne', 'krish': '1354'}
2 changes: 1 addition & 1 deletion login.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>login or register</title>
<title>Register/Login</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
Expand Down