diff --git a/README.md b/README.md
index e6bc571..9f2256f 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,44 @@
-# Buffer-4.0
-Buffer is a Data Structures and Algorithms Project series, in which students can participate as mentees in teams of 3-4 people.
-This year the themes on which students can create a project are-
-1. Healthcare
-2. Digital Society
-3. Open Innovation
-4. Custom data structure to store data
+# PrioDoc - A Priority Queue Based Patient Management System
-This repository is created for all the teams to be able to upload their final project source code for the same.
+This is a web-based application that allows doctors to manage their patient queue. The application is built using HTML, CSS, and JavaScript and uses Firebase for real-time data synchronization and storage. The data structure used for the Priority Queue is arrays and the language used is JavaScript. The application allows doctors to view their current patient, next patient (if any), and completed patients, as well as to mark a patient as completed and remove them from the queue. The application is designed to improve the efficiency of patient management for doctors and ultimately improve patient care.
-While submitting, note that:
-Each folder should have the name of the team and inside a readme file with team member details, (name, year, branch) and their theme. The readme file should also contain the link to their presentation as well as the drive link where both the report documents would be stored.
-Happy Coding :)
+## Acknowledgements
+
+ - [Firebase](https://firebase.google.com/docs/auth)
+- [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript)
+
+
+## Tech Stack
+
+**Front-end:** HTML, CSS, JavaScript
+
+**Back-end:** Firebase (including Realtime Database and Authentication) for authentication
+
+**Additional tools:** Visual Studio Code as the code editor and Local Storage for storing temporary data
+
+## Instructions before Using
+ - Open up startpage.html on localhost
+ - Sign Up as a Patient
+ - Login as a Patient
+ - Register for an Appointment
+ - Head back and login as a doctor with the credentials email: dr.kellysmith@myradoc.in and password: 123456
+ - Service the patient based on the given queue
+
+## Team Arcs
+
+ - Mrunal Shinde - SY - COMP
+ - Srushti Pophale - SY - COMP
+ - Sakshi Vaidya - SY - COMP
+
+
+## Video Demonstration
+
+https://drive.google.com/file/d/11DzaeFGXGXay4N_-JlS4lhmF7P1D8itM/view?usp=sharing
+
+## FeedBack Reports
+
+https://docs.google.com/document/d/13LsFH3T-BQZjuCsXr-FcfYV-NJQKRkL8/edit?usp=sharing&ouid=112103796661072165501&rtpof=true&sd=true
+
diff --git a/TeamArcs_SY_78/Logo.png b/TeamArcs_SY_78/Logo.png
new file mode 100644
index 0000000..173e318
Binary files /dev/null and b/TeamArcs_SY_78/Logo.png differ
diff --git a/TeamArcs_SY_78/LookUpPatients.html b/TeamArcs_SY_78/LookUpPatients.html
new file mode 100644
index 0000000..8f3518a
--- /dev/null
+++ b/TeamArcs_SY_78/LookUpPatients.html
@@ -0,0 +1,100 @@
+
+
+
+
+ Doctor's View
+
+
+
+
+
Dr.Kelly Smith's View
+
+
Current Patient:
+
+
+
Next Patient:
+
+
+
Completed Patients:
+
+
+
+
+
+
diff --git a/TeamArcs_SY_78/form-doc.js b/TeamArcs_SY_78/form-doc.js
new file mode 100644
index 0000000..6488bdf
--- /dev/null
+++ b/TeamArcs_SY_78/form-doc.js
@@ -0,0 +1,66 @@
+var firebaseConfig = {
+ apiKey: "AIzaSyCeE9c3jX_LfBWjRd6Rv2O7KY5NGPKwh4o",
+ authDomain: "teamloop-79b88.firebaseapp.com",
+ projectId: "teamloop-79b88",
+ storageBucket: "teamloop-79b88.appspot.com",
+ messagingSenderId: "18214010600",
+ appId: "1:18214010600:web:0818dfba3d291d1f51d35d"
+};
+// Initialize Firebase
+firebase.initializeApp(firebaseConfig);
+
+const auth = firebase.auth();
+
+//signup function
+function signUp() {
+ var email = document.getElementById("email");
+ var password = document.getElementById("password");
+
+ const promise = auth.createUserWithEmailAndPassword(email.value, password.value);
+
+ promise.catch(e => alert(e.message));
+ alert("SignUp Successfully");
+}
+
+//signIN function
+function signIn() {
+ var email = document.getElementById("email");
+ var password = document.getElementById("password");
+ const promise = auth.signInWithEmailAndPassword(email.value, password.value);
+ promise.then(() => {
+ window.location.href = "LookUpPatients.html";
+ })
+ .catch(e => alert(e.message));
+
+}
+
+
+//signOut
+
+function signOut() {
+ auth.signOut();
+ alert("SignOut Successfully from System");
+}
+
+//active user to homepage
+firebase.auth().onAuthStateChanged((user) => {
+ if (user) {
+ var email = user.email;
+ alert("Your account has been created!!! " + email);
+
+ } else {
+ alert("No Active user Found")
+ }
+})
+
+function validateEmail() {
+ const email = document.getElementById("email").value.trim();
+ const emailRegex = /^dr\.kellysmith@myradoc\.in$/i; // regex to match required email format
+
+ if (!emailRegex.test(email)) {
+ alert("Invalid email format. Please enter a valid doctor email.");
+ return false;
+ }
+ return true;
+ }
+
\ No newline at end of file
diff --git a/TeamArcs_SY_78/form-patient.js b/TeamArcs_SY_78/form-patient.js
new file mode 100644
index 0000000..ccb273b
--- /dev/null
+++ b/TeamArcs_SY_78/form-patient.js
@@ -0,0 +1,54 @@
+var firebaseConfig = {
+ apiKey: "AIzaSyCeE9c3jX_LfBWjRd6Rv2O7KY5NGPKwh4o",
+ authDomain: "teamloop-79b88.firebaseapp.com",
+ projectId: "teamloop-79b88",
+ storageBucket: "teamloop-79b88.appspot.com",
+ messagingSenderId: "18214010600",
+ appId: "1:18214010600:web:0818dfba3d291d1f51d35d"
+};
+// Initialize Firebase
+firebase.initializeApp(firebaseConfig);
+
+const auth = firebase.auth();
+
+//signup function
+function signUp() {
+ var email = document.getElementById("email");
+ var password = document.getElementById("password");
+
+ const promise = auth.createUserWithEmailAndPassword(email.value, password.value);
+
+ promise.catch(e => alert(e.message));
+ alert("SignUp Successfully");
+}
+
+//signIN function
+function signIn() {
+ var email = document.getElementById("email");
+ var password = document.getElementById("password");
+ const promise = auth.signInWithEmailAndPassword(email.value, password.value);
+ promise.then(() => {
+ window.location.href = "registration.html";
+ })
+ .catch(e => alert(e.message));
+
+}
+
+
+//signOut
+
+function signOut() {
+ auth.signOut();
+ alert("SignOut Successfully from System");
+}
+
+//active user to homepage
+firebase.auth().onAuthStateChanged((user) => {
+ if (user) {
+ var email = user.email;
+ alert("Your account has been created!!! " + email);
+
+ } else {
+ alert("No Active user Found")
+ }
+})
\ No newline at end of file
diff --git a/TeamArcs_SY_78/index-doc.html b/TeamArcs_SY_78/index-doc.html
new file mode 100644
index 0000000..526340a
--- /dev/null
+++ b/TeamArcs_SY_78/index-doc.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Login System Doctor
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/TeamArcs_SY_78/startpage.html b/TeamArcs_SY_78/startpage.html
new file mode 100644
index 0000000..0b3422f
--- /dev/null
+++ b/TeamArcs_SY_78/startpage.html
@@ -0,0 +1,60 @@
+
+
+
+
+
+ Myra Healthcare
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
About Us
+
Myra Healthcare is a leading healthcare provider, committed to providing high-quality medical services to our patients. Our team of experienced healthcare professionals is dedicated to providing personalized care and ensuring that our patients receive the best possible treatment.
+
+
+
+
Our Services
+
+
General Health Checkup
+
At Myra Healthcare, we strive to make it as easy as possible to book an appointment with one of our healthcare professionals. Simply login and fill out the form and we'll be in touch to confirm your appointment time.