+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Week3-Project/Taarak INT008/employeelistbackend.js b/Week3-Project/Taarak INT008/employeelistbackend.js
new file mode 100644
index 0000000..fec7cb0
--- /dev/null
+++ b/Week3-Project/Taarak INT008/employeelistbackend.js
@@ -0,0 +1,83 @@
+
+
+function postingdetails(){
+
+ var Name=document.getElementById('fname').value;
+ var Password=document.getElementById('password').value;
+
+ var emailid=document.getElementById('email').value;
+ console.log(emailid);
+
+ var PostingData={
+ "name": Name,
+
+ "Email":emailid,
+ "password":Password
+
+
+
+ }
+ $.ajax({
+ type: 'POST',
+ url: 'http://localhost:8083//register/Employee',
+ data:PostingData,
+ success: function(data) {
+ alert("SUBMISSION SUCCESSFUL:WELCOME ABOARD");
+ location.href = "employeelist.html";
+ }
+ });
+ }
+
+function deleteDetails(){
+
+
+var idgetting=localStorage.getItem("id");
+//"id"=idgetting;
+
+if(confirm("ARE YOU SURE?")){
+ $.ajax({
+ url: 'http://localhost:8083//register/Employee' + idgetting,
+ type: 'DELETE',
+ // data:DeletingSingleData,
+
+
+ success: function(data) {
+ alert("DATA DELETED SUCCESSFULLY");
+ location.href = "employeelist.html";
+ }
+
+});}
+ else{
+ alert("im upset");
+ }
+}
+
+function updatingdetails(){
+
+ var firstname=document.getElementById('fname').value;
+
+
+ var emailid=document.getElementById('email').value;
+
+ var password=document.getElementById('password').value;
+ var UpdateData={
+ "fname": name,
+
+ "Email":emailid,
+ "password":password,
+ "id":idgetting
+
+
+ }
+
+
+ $.ajax({
+ url: 'http://localhost:8083//register/Employee'+idgetting,
+ type: 'PUT',
+ data:UpdateData,
+ success: function(data) {
+ alert("UPDATED SUCCESSFULLY");
+ location.href = "employeelist.html";
+ }
+});
+ }
\ No newline at end of file
diff --git a/Week3-Project/Taarak INT008/index.html b/Week3-Project/Taarak INT008/index.html
new file mode 100644
index 0000000..393acdc
--- /dev/null
+++ b/Week3-Project/Taarak INT008/index.html
@@ -0,0 +1,31 @@
+
+
+
+ LINK FOR ALL PAGES
+
+
+
+
+
+ SIGNUP
+ LOGIN
+ CREATE
+ EMPLOYEE LIST
+ DETAIL OF SINGLE EMPLOYEE
+
+
+
+ In the project, I have applied CRUD operation using API's which were developed in C#.
+ In the "CREATE" page ,once the details are filled the data will be posted/created in database.
+ The employee list helps us to retrieve data of all the members oboard and when the "DETAILS" button(present in table of employee list page) is pressed it displays the data of that selected employee.
+ On that selected page,the employee can perform functions like Update and delete as well.
+
+
+ All the CRUD opertions are performed dynamically with the help of Local storage concept.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Week3-Project/Taarak INT008/login.html b/Week3-Project/Taarak INT008/login.html
new file mode 100644
index 0000000..d4cdd39
--- /dev/null
+++ b/Week3-Project/Taarak INT008/login.html
@@ -0,0 +1,55 @@
+
+
+
+LOGIN PORTAL
+
+
+
+
+
+
+
+
+