-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Project01-Calculator/deepakbansalINT019/javascipt.js b/Project01-Calculator/deepakbansalINT019/javascipt.js
deleted file mode 100644
index 1dc0871..0000000
--- a/Project01-Calculator/deepakbansalINT019/javascipt.js
+++ /dev/null
@@ -1,8 +0,0 @@
-function deep(d) {
- touch.dis.value=touch.dis.value+d;
- }
-
- function deepresult()
- {
- touch.dis.value=eval(touch.dis.value);
- }
\ No newline at end of file
diff --git a/Project01-Calculator/deepakbansalINT019/style.css b/Project01-Calculator/deepakbansalINT019/style.css
deleted file mode 100644
index 515e0a1..0000000
--- a/Project01-Calculator/deepakbansalINT019/style.css
+++ /dev/null
@@ -1,82 +0,0 @@
-body{
- background-image: url(back.jpg);
- }
-
- #h{
- padding-top: 10px;
- padding-left: 40%;
- font-size: 41px;
- font-weight: bolder;
- color:white;
- }
-
- .cal{
-
- width: 304px;
- margin: auto;
- height: auto;
- font-family: sans-serif;
- background: black;
- padding-top: 10px;
- padding-left: 10px;
- padding-bottom: 10px;
- border-radius:5px;
- }
-
- .cal input[type=text]{
- width:288px;
- height: 50px;
- font-size: 30px;
- border-radius: 8px;
- font-weight: bolder;
- }
-
- .cal input[type=button]{
- width:70px;
- height: 70px;
- border-radius: 5px;
- font-weight: bolder;
- font-size: 30px;
- border: none;
- }
-
- .cal input[type=reset]{
- width:70px;
- height: 70px;
- border-radius: 5px;
- font-weight: bolder;
- font-size: 25px;
- border: none;
- }
-
- .cal input[type="button"]:hover{
-
- width: 72px;
- height: 72px;
- background-color: blue;
-
- }
-
- .cal input[type="reset"]:hover{
-
- width: 72px;
- height: 43px;
- background-color: blue;
- }
-
- .cal input[type=text]{
- width:288px;
- height: 50px;
- font-size: bolder;
- border-radius: 5px;
- padding-left: 5px;
- background: rgba(255,255,255,0.7);
- }
-
- .cal input[type=text]:hover{
- width:290px;
- height: 52px;
-
- border-radius: 5px;
-
- }
\ No newline at end of file
diff --git a/Project01-Calculator/gaurav_singh024/cal.css b/Project01-Calculator/gaurav_singh024/cal.css
deleted file mode 100644
index 62cda8a..0000000
--- a/Project01-Calculator/gaurav_singh024/cal.css
+++ /dev/null
@@ -1,139 +0,0 @@
-.title{
- margin-bottom: 10px;
-
-
- text-align:center;
-
-
- width: 20%;
-
-
- color:blue;
-
-
- border: solid black 2px;}
-
-
-
-
-
-
-
-
-
-input[type="text"]
-
-
- {
-
- background-color:white;
-
-
- border: solid black 2px;
-
-
- width:100%;
-
- height:100%;}
-
- body
-{
-background-color:tan;
-}
-
-
-.box
-{
-background-color:#3d4543;
-height:260px;
-width:300px;
-border-radius:10px;
-position:relative;
-top:80px;
-left:40%;
-}
-.display
-{
-background-color:#222;
-width:220px;
-position:relative;
-
-height:40px;
-}
-.display input
-{
-position:relative;
-left:2px;
-top:2px;
-height:35px;
-color:black;
-background-color:#bccd95;
-font-size:21px;
-text-align:right;
-}
-
-.button
-{
-width:40px;
-height:30px;
-border:none;
-border-radius:8px;
-margin-left:17px;
-cursor:pointer;
-border-top:2px solid transparent;
-}
-.button.grey
-{
-color:white;
-background-color:#6f6f6f;
-border-bottom:black 2px solid;
-border-top:2px #6f6f6f solid;
-}
-.button.pink
-{
-color:black;
-background-color:#ff4561;
-border-bottom:black 2px solid;
-}
-.button.black
-{
-color:white;
-background-color:303030;
-border-bottom:black 2px solid;
-border-top:2px 303030 solid;
-}
-.button.orange
-{
-color:black;
-background-color:FF9933;
-border-bottom:black 2px solid;
-border-top:2px FF9933 solid;
-}
-.gray:active
-{
-border-top:black 2px solid;
-border-bottom:2px #6f6f6f solid;
-}
-.pink:active
-{
-border-top:black 2px solid;
-border-bottom:#ff4561 2px solid;
-}
-.black:active
-{
-border-top:black 2px solid;
-border-bottom:#303030 2px solid;
-}
-.orange:active
-{
-border-top:black 2px solid;
-border-bottom:FF9933 2px solid;
-}
-p
-{
-line-height:10px;
-}
- body
-{
-background-color:tan;
-}
\ No newline at end of file
diff --git a/Project01-Calculator/gaurav_singh024/calc.js b/Project01-Calculator/gaurav_singh024/calc.js
deleted file mode 100644
index 0969422..0000000
--- a/Project01-Calculator/gaurav_singh024/calc.js
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
- function dis(val)
-
-
-
- {
-document.getElementById("result").value+=val
-}
-
-
-
-
-
-
-
-function solve()
-
-
- {
-
- x = document.getElementById("result").value
-
-
-
- y = eval(x)
-
-
- document.getElementById("result").value = y }
-
-
-
- function clr()
-
- { document.getElementById("result").value = ""
-
- }
-
-
-
-
-
\ No newline at end of file
diff --git a/Project01-Calculator/gaurav_singh024/index.html b/Project01-Calculator/gaurav_singh024/index.html
deleted file mode 100644
index 110d3ad..0000000
--- a/Project01-Calculator/gaurav_singh024/index.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Project01-Calculator/nikhil_tayal005/index.html b/Project01-Calculator/nikhil_tayal005/index.html
deleted file mode 100644
index 7d4f719..0000000
--- a/Project01-Calculator/nikhil_tayal005/index.html
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
-
-
Document
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Project01-Calculator/nikhil_tayal005/main.css b/Project01-Calculator/nikhil_tayal005/main.css
deleted file mode 100644
index 3524db9..0000000
--- a/Project01-Calculator/nikhil_tayal005/main.css
+++ /dev/null
@@ -1,56 +0,0 @@
-body
-{
- background-image:
-}
-.main-body{
- border: 3px solid #003366;
- width: 300px;
- padding: 1%;
- border-radius: 4%;
- max-width: 500px;
- margin: auto;
- margin-top: 5%;
- background-color:lightslategrey;
- box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-}
-input
-{
- width: 100%;
- height: 100%;
- line-height: 100%;
- min-height: 100%;
- font-size: 250%;
- border-radius: 10px;
-}
-input[type=button]:hover {
- background-color: darkslategrey;
- transform: translateY(3px);
-}
-input[type=button]:active {
- background-color: slategrey;
- box-shadow: 0 5px #666;
- transform: translateY(6px);
-}
-input[type=text]
-{
- border-radius: 0px;
- border: 2px solid black;
- margin-bottom: 10px;
- box-shadow: inset 0 0 10px #000000;
- font-family: 'Orbitron', sans-serif;
- text-align: right;
-
-}
-.myclass{
- display:block;
- width: 100%;
- height: 100%;
-}
-td{
- width: 70px;
- height: 40px;
-}
-h1
-{
- margin: 10px auto;
-}
\ No newline at end of file
diff --git a/Project01-Calculator/shanu018/index.html b/Project01-Calculator/shanu018/index.html
deleted file mode 100644
index 01930d9..0000000
--- a/Project01-Calculator/shanu018/index.html
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
Calculator
-
-
-
-
-
fx 220
-
-
-
-
-
- 7
- 8
- 9
- +
- 4
- 5
- 6
- -
- 1
- 2
- 3
- ÷
- 0
- .
- =
- x
-
-
-
Built by Shanu Singh
-
-
-
diff --git a/Project01-Calculator/shanu018/main.js b/Project01-Calculator/shanu018/main.js
deleted file mode 100644
index a4818c4..0000000
--- a/Project01-Calculator/shanu018/main.js
+++ /dev/null
@@ -1,66 +0,0 @@
-/*eslint-env browser*/
-var keys = document.querySelectorAll('#calculator span');
-var operators = ['+', '-', 'x', '÷'];
-var decimalAdded = false;
-
-
-for(var i = 0; i < keys.length; i++) {
- keys[i].onclick = function(e) {
-
- var input = document.querySelector('.screen');
- var inputVal = input.innerHTML;
- var btnVal = this.innerHTML;
-
-
- if(btnVal == 'C') {
- input.innerHTML = '';
- decimalAdded = false;
- }
-
- else if(btnVal == '=') {
- var equation = inputVal;
- var lastChar = equation[equation.length - 1];
-
- equation = equation.replace(/x/g, '*').replace(/÷/g, '/');
-
- if(operators.indexOf(lastChar) > -1 || lastChar == '.')
- equation = equation.replace(/.$/, '');
-
- if(equation)
- input.innerHTML = eval(equation);
-
- decimalAdded = false;
- }
-
- else if(operators.indexOf(btnVal) > -1) {
-
- lastChar = inputVal[inputVal.length - 1];
-
- if(inputVal != '' && operators.indexOf(lastChar) == -1)
- input.innerHTML += btnVal;
-
- else if(inputVal == '' && btnVal == '-')
- input.innerHTML += btnVal;
-
- if(operators.indexOf(lastChar) > -1 && inputVal.length > 1) {
-
- input.innerHTML = inputVal.replace(/.$/, btnVal);
- }
-
- decimalAdded =false;
- }
-
- else if(btnVal == '.') {
- if(!decimalAdded) {
- input.innerHTML += btnVal;
- decimalAdded = true;
- }
- }
-
- else {
- input.innerHTML += btnVal;
- }
-
- e.preventDefault();
- }
-}
\ No newline at end of file
diff --git a/Project01-Calculator/shanu018/style.css b/Project01-Calculator/shanu018/style.css
deleted file mode 100644
index 15aeaa0..0000000
--- a/Project01-Calculator/shanu018/style.css
+++ /dev/null
@@ -1,166 +0,0 @@
-/* Basic reset */
-* {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
-
- /* Better text styling */
- font: bold 14px Arial, sans-serif;
-}
-
-/* Finally adding some IE9 fallbacks for gradients to finish things up */
-
-/* A nice BG gradient */
-html {
- height: 100%;
- background: white;
- background: radial-gradient(circle, #fff 20%, #ccc);
- background-size: cover;
-}
-
-/* Using box shadows to create 3D effects */
-#calculator {
- width: 325px;
- height: auto;
-
- margin: 30px auto;
- padding: 20px 20px 9px;
-
- background: #9dd2ea;
- background:#808080;
- border-radius: 3px;
- box-shadow: 0px 4px #009de4, 0px 10px 15px rgba(0, 0, 0, 0.2);
-}
-
-/* Top portion */
-.top span.clear {
- float: left;
-}
-
-/* Inset shadow on the screen to create indent */
-.top .screen {
- height: 40px;
- width: 212px;
-
- float: right;
-
- padding: 0 10px;
-
- background: rgba(0, 0, 0, 0.2);
- border-radius: 3px;
- box-shadow: inset 0px 4px rgba(0, 0, 0, 0.2);
-
- /* Typography */
- font-size: 17px;
- line-height: 40px;
- color: white;
- text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
- text-align: right;
- letter-spacing: 1px;
-}
-
-/* Clear floats */
-.keys, .top {overflow: hidden;}
-
-/* Applying same to the keys */
-.keys span, .top span.clear {
- float: left;
- position: relative;
- top: 0;
-
- cursor: pointer;
-
- width: 66px;
- height: 36px;
-
- background: white;
- border-radius: 3px;
- box-shadow: 0px 4px rgba(0, 0, 0, 0.2);
-
- margin: 0 7px 11px 0;
-
- color: #888;
- line-height: 36px;
- text-align: center;
-
- /* prevent selection of text inside keys */
- user-select: none;
-
- /* Smoothing out hover and active states using css3 transitions */
- transition: all 0.2s ease;
-}
-
-/* Remove right margins from operator keys */
-/* style different type of keys (operators/evaluate/clear) differently */
-.keys span.operator {
- background: #FFF0F5;
- margin-right: 0;
-}
-
-.keys span.eval {
- background: #f1ff92;
- box-shadow: 0px 4px #9da853;
- color: #888e5f;
-}
-
-.top span.clear {
- background: #ff9fa8;
- box-shadow: 0px 4px #ff7c87;
- color: white;
-}
-
-/* Some hover effects */
-.keys span:hover {
- background: #9c89f6;
- box-shadow: 0px 4px #6b54d3;
- color: white;
-}
-
-.keys span.eval:hover {
- background: #abb850;
- box-shadow: 0px 4px #717a33;
- color: #ffffff;
-}
-
-.top span.clear:hover {
- background: #f68991;
- box-shadow: 0px 4px #d3545d;
- color: white;
-}
-
-/* Simulating "pressed" effect on active state of the keys by removing the box-shadow and moving the keys down a bit */
-.keys span:active {
- box-shadow: 0px 0px #6b54d3;
- top: 4px;
-}
-
-.keys span.eval:active {
- box-shadow: 0px 0px #717a33;
- top: 4px;
-}
-
-.top span.clear:active {
- top: 4px;
- box-shadow: 0px 0px #d3545d;
-}
-
-h1 {
- text-align: center;
- padding-bottom: 30px;
-}
-
-a.link {
- text-decoration: none;
- font: normal 14px Helvetica, Arial, sans-serif;
- color: green;
-}
-
-.author{
- text-align: center;
- font-weight: 100;
-}
-
-.model{
- font-weight: 100;
- padding: 4px;
-}
\ No newline at end of file
diff --git a/Project01-Calculator/shreya009/js.js b/Project01-Calculator/shreya009/js.js
deleted file mode 100644
index 29b8c6f..0000000
--- a/Project01-Calculator/shreya009/js.js
+++ /dev/null
@@ -1,27 +0,0 @@
-var s;
-function op(val)
- {
- document.getElementById("d").value=val;
- }
- function num(val)
- {
- s=document.getElementById("d").value+=val;
- }
- function ans()
- {
-
-
- op(eval(document.getElementById("d").value))
-
-
- }
-function clr()
- {
- document.getElementById("d").value=" "
- }
-function sq(s)
-{
-
-var x=Number(document.getElementById("d").value);
- document.getElementById("d").value=x*x;
-}
\ No newline at end of file
diff --git a/Project01-Calculator/shreya009/shreya009.html b/Project01-Calculator/shreya009/shreya009.html
deleted file mode 100644
index 3c926d3..0000000
--- a/Project01-Calculator/shreya009/shreya009.html
+++ /dev/null
@@ -1,137 +0,0 @@
-
-
-
-
-
-
calculator
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/AbhishekSharma_INT029/Abhishek.html b/Week1-Project/AbhishekSharma_INT029/Abhishek.html
deleted file mode 100644
index fcad1f2..0000000
--- a/Week1-Project/AbhishekSharma_INT029/Abhishek.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
Abhishek's Details
-
-
-
First Name : Abhishek
-
Last Name : Sharma
-
Designation : Intern
-
Email Id : AbhishekSharma5023@gmail.com
-
Contact : 9958348436
-
Address: C-180, Sector 72, Noida
-
-
Back
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/AbhishekSharma_INT029/EmployeeAccount.html b/Week1-Project/AbhishekSharma_INT029/EmployeeAccount.html
deleted file mode 100644
index 4ac157e..0000000
--- a/Week1-Project/AbhishekSharma_INT029/EmployeeAccount.html
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
Employee Account
-
-
-
-
-
-
-
Welcome to Cyber Group
-
-
If you are a new employee, please enter your details.
-
-
Enter Details
-
-
Or click here to view Employee Details
-
-
View Employee List
-
-
Logout
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/AbhishekSharma_INT029/EnterEmployeeDetails.html b/Week1-Project/AbhishekSharma_INT029/EnterEmployeeDetails.html
deleted file mode 100644
index 040c2c3..0000000
--- a/Week1-Project/AbhishekSharma_INT029/EnterEmployeeDetails.html
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
Enter Employee Details
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/AbhishekSharma_INT029/Karan.html b/Week1-Project/AbhishekSharma_INT029/Karan.html
deleted file mode 100644
index e008923..0000000
--- a/Week1-Project/AbhishekSharma_INT029/Karan.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
Karan's Details
-
-
-
First Name : Karan
-
Last Name : Bhyana
-
Designation : Intern
-
Email Id : Karan1234@gmail.com
-
Contact : 9876543210
-
Address: New Delhi
-
-
Back
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/AbhishekSharma_INT029/Login.html b/Week1-Project/AbhishekSharma_INT029/Login.html
deleted file mode 100644
index 08bcd1f..0000000
--- a/Week1-Project/AbhishekSharma_INT029/Login.html
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
EMPLOYEE LOGIN
-
-
-
-
-
-
-
CYBER GROUP LOGIN PAGE
-
-
-
Employee ID
-
-
-
Password
-
-
-
Login
-
-
Reset
-
-
-
Create New Account
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/AbhishekSharma_INT029/Logo.png b/Week1-Project/AbhishekSharma_INT029/Logo.png
deleted file mode 100644
index c2d12fc..0000000
Binary files a/Week1-Project/AbhishekSharma_INT029/Logo.png and /dev/null differ
diff --git a/Week1-Project/AbhishekSharma_INT029/Main.css b/Week1-Project/AbhishekSharma_INT029/Main.css
deleted file mode 100644
index 7bfee35..0000000
--- a/Week1-Project/AbhishekSharma_INT029/Main.css
+++ /dev/null
@@ -1,27 +0,0 @@
-.box1{
- background-color: white;
- border:5px black solid;
- margin: 20px;
- padding: 20px;
-
-}
-.container{
-
-
- width:80%;
- margin: auto;
- text-align: center;
- padding: none;
-}
-.box1 h1{
-text-decoration: underline;
-}
-
-.box1 li{
- padding-bottom:6px;
- border-bottom:dotted 1px #333;
-}
-
-a:hover{
- color:red;
-}
diff --git a/Week1-Project/AbhishekSharma_INT029/Signup.html b/Week1-Project/AbhishekSharma_INT029/Signup.html
deleted file mode 100644
index b9f4700..0000000
--- a/Week1-Project/AbhishekSharma_INT029/Signup.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
New Employee Signup
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/AbhishekSharma_INT029/Vidit.html b/Week1-Project/AbhishekSharma_INT029/Vidit.html
deleted file mode 100644
index 402318a..0000000
--- a/Week1-Project/AbhishekSharma_INT029/Vidit.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
Vidit's Details
-
-
-
First Name : Vidit
-
Last Name : Mathur
-
Designation : Intern
-
Email Id : Vidit.Mathur@gmail.com
-
Contact : 8076507189
-
Address: Dilshad Garden
-
-
Back
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/AbhishekSharma_INT029/ViewEmployeeDetails.html b/Week1-Project/AbhishekSharma_INT029/ViewEmployeeDetails.html
deleted file mode 100644
index 013dd13..0000000
--- a/Week1-Project/AbhishekSharma_INT029/ViewEmployeeDetails.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
View Employees List
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/AbhishekSharma_INT029/index.html b/Week1-Project/AbhishekSharma_INT029/index.html
deleted file mode 100644
index 34cc6ef..0000000
--- a/Week1-Project/AbhishekSharma_INT029/index.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
Links
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Anusha015/Create.html b/Week1-Project/Anusha015/Create.html
deleted file mode 100644
index 959d534..0000000
--- a/Week1-Project/Anusha015/Create.html
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
CYBER GROUP
-
-
-
-
-
-
-
-
-
-
- CYBER GROUP CREATE
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Anusha015/Details.css b/Week1-Project/Anusha015/Details.css
deleted file mode 100644
index 3cc98fb..0000000
--- a/Week1-Project/Anusha015/Details.css
+++ /dev/null
@@ -1,84 +0,0 @@
-body
-{
- margin: 0;
- padding: 0;
- background : #efefef;
- font-size: 5;
- font-family: sans-serif;
- font-weight:300;
-}
-
-*{
-
- box-sizing: border-box;
-}
-
-
-header{
- padding: 0;
- position: relative;
- background: black;
-
-}
-
-h2 {
- position: absolute;
- left : 35%;
- font-family: fantasy;
- font-size: 40px;
- font-weight:300;
- font-family:cursive;
- color:chocolate;
- top: 0%;
-
-}
-
-h1{
- position: relative;
- font-family:cursive;
- color:cornflowerblue;
-}
-
-table{
- width:100%;
-}
-td{
- color:black;
- font-size: 15px;
- text-align: center;
-}
-
-th{
- color:darkslategray;
- font-size: 17px;
- background-color:aliceblue;
-}
-
-
-
-summary:after {
- background:cornflowerblue;
- border-radius: 5px;
- content: "+";
-
- float: left;
- font-size: 1.5em;
- font-weight: bold;
- margin: -5px 10px 0 0;
- text-align: center;
- width: 20px;
-}
-details[open] summary:after {
- content: "-";
-}
-
-
-
-
-footer{
- color: white;
- margin-top:30%;
- background-color: black;
- font-family: sans-serif;
- font-size:small;
-}
diff --git a/Week1-Project/Anusha015/Details.html b/Week1-Project/Anusha015/Details.html
deleted file mode 100644
index 4a429f5..0000000
--- a/Week1-Project/Anusha015/Details.html
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
-
-
CYBER GROUP
-
-
-
-
-
-
-
-
-
-
- EMPLOYEE DETAILS
-
-
-
-
-
EMPLOYEES :
-
-
- Anusha
-
-
-
- CygrpID
- Firstname
- Lastname
- Age
- Designation
- Phone
- Email id
-
-
- 015
- Anusha
- NA
- 22
- Intern
- 9987654321
- anusha.jp03@gamil.com
-
-
-
-
-
-
- Shivam Sachdeva
-
-
-
- CygrpID
- Firstname
- Lastname
- Age
- Designation
- Phone
- Email
-
-
- 006
- Shivam
- Sachdeva
- 22
- Intern
- 8796857353
- shivam345@gmail.com
-
-
-
-
-
- Srishty Rawat
-
-
-
- CygrpID
- Firstname
- Lastname
- Age
- Designation
- Phone
- Email
-
-
- 026
- Srishty
- Rawat
- 21
- Intern
- 8976543201
- sishtyrawat@gmail.com
-
-
-
-
-
-
- Nikhil Tayal
-
-
-
- CygrpID
- Firstname
- Lastname
- Age
- Designation
- Phone
- Email
-
-
- 008
- Nikhil
- Tayal
- 23
- Intern
- 9891976586
- nikhiltayal23@outlook.com
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Anusha015/List.html b/Week1-Project/Anusha015/List.html
deleted file mode 100644
index 412436d..0000000
--- a/Week1-Project/Anusha015/List.html
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
-
CYBER GROUP
-
-
-
-
-
-
-
-
-
-
- MEMBERS OF CYBER GROUP
-
-
-
-
-
-
-
-
-
- First Name
-
-
-
- Last Name
-
-
-
- ID
-
-
-
- Designation Name
-
-
-
-
-
-
- Anusha
- .
- INT 015
- Intern
-
-
-
- Shivam
- Sachdeva
- INT 006
- Intern
-
-
-
- Pallavi
- Verma
- INT 026
- Intern
-
-
-
- Nikhil
- Tayal
- INT 008
- Intern
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Anusha015/Login.html b/Week1-Project/Anusha015/Login.html
deleted file mode 100644
index 72be16e..0000000
--- a/Week1-Project/Anusha015/Login.html
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
CYBER GROUP
-
-
-
-
-
-
-
-
-
-
- LOGIN TO CYBER GROUP
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Anusha015/README.md b/Week1-Project/Anusha015/README.md
deleted file mode 100644
index 6572517..0000000
--- a/Week1-Project/Anusha015/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-NETLIFY link:
-https://heuristic-williams-19002f.netlify.com/
\ No newline at end of file
diff --git a/Week1-Project/Anusha015/SignUp.html b/Week1-Project/Anusha015/SignUp.html
deleted file mode 100644
index 35f7dcc..0000000
--- a/Week1-Project/Anusha015/SignUp.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
CYBER GROUP
-
-
-
-
-
-
-
-
-
-
- SIGN UP TO CYBER GROUP
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Anusha015/cblogo.png b/Week1-Project/Anusha015/cblogo.png
deleted file mode 100644
index 9e19e64..0000000
Binary files a/Week1-Project/Anusha015/cblogo.png and /dev/null differ
diff --git a/Week1-Project/Anusha015/index.html b/Week1-Project/Anusha015/index.html
deleted file mode 100644
index 44bbac8..0000000
--- a/Week1-Project/Anusha015/index.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
Linking files
-
-
-
-
-
Sign Up Page
-
Login Page
-
Create Page
-
List Page
-
Details Page
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Anusha015/list.css b/Week1-Project/Anusha015/list.css
deleted file mode 100644
index f2d7630..0000000
--- a/Week1-Project/Anusha015/list.css
+++ /dev/null
@@ -1,66 +0,0 @@
-table{ position: absolute;
- left: 30%;
- top: 40%;
- table-layout: auto;
- border-collapse: collapse;
- border-width: thick;
- border-color: darkblue;
-
-}
-
-
-header{
- padding: 0;
- position: relative;
- background: black;
-
-}
-
-h2 {
- position: absolute;
- left : 35%;
- font-family: fantasy;
- font-size: 40px;
- font-weight:300;
- font-family:cursive;
- color:chocolate;
- top: 0%;
-
-}
-
-td{
-
- font-size: 30px;
-
-}
-
-th{
-
- font-size: 30px;
- background-color:aliceblue;
-}
-
-
-body
-{
- margin: 0;
- padding: 0;
- background : #efefef;
- font-size: 5;
- font-family: sans-serif;
- font-weight:300;
-}
-
-*{
-
- box-sizing: border-box;
-}
-
- footer
-{
- color: white;
- margin-top:50%;
- background-color: black;
- font-family: sans-serif;
- font-size:small;
-}
diff --git a/Week1-Project/Anusha015/week1.css b/Week1-Project/Anusha015/week1.css
deleted file mode 100644
index e82db39..0000000
--- a/Week1-Project/Anusha015/week1.css
+++ /dev/null
@@ -1,123 +0,0 @@
-body
-{
- margin: 0;
- padding: 0;
- background : #efefef;
- font-size: 5;
- font-family: sans-serif;
- font-weight:300;
-}
-
-*{
-
- box-sizing: border-box;
-}
-
-
-
-
-#login-box
-{
- padding: 16px;
- width:50%;
- position: absolute;
- top:100px;
- left:25%;
- right:15%;
- font-family:monospace;
- color:crimson;
- font-size:20px;
-}
-
-
-
-input[type=text], input[type=password] ,input[type=number],input[type=date]
-{
- display: inline-block;
- border: none;
- background-color: cornsilk;
- width: 100%;
- padding: 15px;
- margin: 5px 0 22px 0;
-
-}
-
-input[type=text]:focus, input[type=password],input[type=number],input[type=date]:focus
-{
- outline: none;
- background-color: cornsilk;
-}
-
-header{
- padding: 0;
- position: relative;
- background: black;
-
-}
-
-h2 {
- position: absolute;
- left : 35%;
- font-family: fantasy;
- font-size: 40px;
- font-weight:300;
- font-family:cursive;
- color:chocolate;
- top: 0%;
-
-}
-
-.sbtn
-{
- font-size:small;
- font-weight:bold;
- background-color: #96d496;
- padding: 16px;
- position: relative;
- left: 55%;
- margin: 8px;
- width: 20%;
- text-align: center;
- font-size: 16px;
- box-shadow: 20px;
- cursor: pointer;
-}
-
-
-.cbtn
-{
- font-size:small;
- font-weight:bold;
- position: absolute;
- left:75%;
- padding: 16px;
- margin: 8px;
- cursor: pointer;
- width: 20%;
- box-shadow: 20px;
- text-align: center;
- font-size: 16px;
-
-
-background-color: #e13a3a;
- }
-
-
-.cbtn:hover
-{
-
- color: white;
-}
-
-.sbtn:hover
-{
- color: white;
-}
-
-footer{
- color: white;
- margin-top:51%;
- background-color: black;
- font-family: sans-serif;
- font-size:small;
-}
diff --git a/Week1-Project/ArpitDave_007/Database1.html b/Week1-Project/ArpitDave_007/Database1.html
deleted file mode 100644
index 5818278..0000000
--- a/Week1-Project/ArpitDave_007/Database1.html
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
-
Project-1 : Details of Employees
-
-
-
-
-
-
-
-
-
-
-
-
Details of new Employees.
-
-
-
- Full Name :
- Phone number :
- Date of birth :
- Designation :
- E-Mail ID :
- Employee ID :
-
-
-
-
-
-
-
diff --git a/Week1-Project/ArpitDave_007/Database2.html b/Week1-Project/ArpitDave_007/Database2.html
deleted file mode 100644
index 7aac23a..0000000
--- a/Week1-Project/ArpitDave_007/Database2.html
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
- Project-1 : Details of Employees
-
-
-
-
-
-
-
-
-
-
-
-
Details of new Employees.
-
-
-
- Full Name :
- Phone number :
- Date of birth :
- Designation :
- E-Mail ID :
- Employee ID :
-
-
-
-
-
-
-
diff --git a/Week1-Project/ArpitDave_007/Database3.html b/Week1-Project/ArpitDave_007/Database3.html
deleted file mode 100644
index 3873c89..0000000
--- a/Week1-Project/ArpitDave_007/Database3.html
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
- Project-1 : Details of Employees
-
-
-
-
-
-
-
-
-
-
-
-
Details of new Employees.
-
-
-
- Full Name :
- Phone number :
- Date of birth :
- Designation :
- E-Mail ID :
- Employee ID :
-
-
-
-
-
-
-
diff --git a/Week1-Project/ArpitDave_007/Database4.html b/Week1-Project/ArpitDave_007/Database4.html
deleted file mode 100644
index 5e29050..0000000
--- a/Week1-Project/ArpitDave_007/Database4.html
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
- Project-1 : Details of Employees
-
-
-
-
-
-
-
-
-
-
-
-
Details of new Employees.
-
-
-
- Full Name :
- Phone number :
- Date of birth :
- Designation :
- E-Mail ID :
- Employee ID :
-
-
-
-
-
-
-
diff --git a/Week1-Project/ArpitDave_007/Database5.html b/Week1-Project/ArpitDave_007/Database5.html
deleted file mode 100644
index 65c8947..0000000
--- a/Week1-Project/ArpitDave_007/Database5.html
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
- Project-1 : Details of Employees
-
-
-
-
-
-
-
-
-
-
-
-
Details of new Employees.
-
-
-
- Full Name :
- Phone number :
- Date of birth :
- Designation :
- E-Mail ID :
- Employee ID :
-
-
-
-
-
-
-
diff --git a/Week1-Project/ArpitDave_007/Employee Data.html b/Week1-Project/ArpitDave_007/Employee Data.html
deleted file mode 100644
index 06bf631..0000000
--- a/Week1-Project/ArpitDave_007/Employee Data.html
+++ /dev/null
@@ -1,107 +0,0 @@
-
-
-
-
-
- Project-1 : Details of Employees
-
-
-
-
-
-
-
-
-
-
-
-
-
Enter details of new Employees.
-
-
-
- Full Name :
- Phone number :
- Address :
- Designation :
- E-Mail ID :
- Employee ID :
-
-
-
-
-
-
-
diff --git a/Week1-Project/ArpitDave_007/Login.html b/Week1-Project/ArpitDave_007/Login.html
deleted file mode 100644
index 0bec8b1..0000000
--- a/Week1-Project/ArpitDave_007/Login.html
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
- Project-1: Login
-
-
-
-
-
-
-
-
-
-
-
-
-
Please Login to continue.
-
Or Sign up if you don't have an account.
-
-
-
-
- Employee ID :
- Password :
-
-
-
-
-
-
diff --git a/Week1-Project/ArpitDave_007/README.md b/Week1-Project/ArpitDave_007/README.md
deleted file mode 100644
index a889709..0000000
--- a/Week1-Project/ArpitDave_007/README.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Employee Data Management System
-
-Plan for the project is to build a fully functional Data Management system conotaining Data entries for Employees. This is planned to be done in parts. This README file covers Phase-1 of the Project.
-
-## Getting Started
-
-The Project would be available as a Repository on Github as well as live over Netlify.
-The Links for both are as mentioned :
-
-Github (Personal Directory) -: https://github.com/arpitdave1997/BootcampJan2019/Week1-Project/ArpitDave_007
-
-Netlify -: https://arpitdave1.netlify.com/
-
-
-## Authors
-
-* Arpit Dave - Intern, Cyber Group : ( Github : arpitdave1997 )
diff --git a/Week1-Project/ArpitDave_007/Table.html b/Week1-Project/ArpitDave_007/Table.html
deleted file mode 100644
index e115830..0000000
--- a/Week1-Project/ArpitDave_007/Table.html
+++ /dev/null
@@ -1,137 +0,0 @@
-
-
-
-
-
- Project-1: Details Table
-
-
-
-
-
-
-
-
-
-
-
-
Details of Employees
-
-
-
-
-
- S.No.
- Full Name
- Date of Birth
- Designation
- E-Mail ID
- Employee ID
-
-
- 1.
- Arpit Dave
- 28/01/1997
- Intern
- arpit.dave@cygrp.com
- INT-007
-
-
- 2.
- Ankit Sharma
- 24/06/1998
- Intern
- ankit.sharma@cygrp.com
- INT-012
-
-
- 3.
- Bhoomika Gupta
- 04/11/1994
- Software Developer
- bhoomika.gupta@cygrp.com
- CYG-210
-
-
- 4.
- Sushant Sharma
- 11/12/1992
- Sr. Software Developer
- sushant.sharma@cygrp.com
- CYG-119
-
-
- 5.
- Akshit Mittal
- 30/04/1993
- Manager
- akshit.mittal@cygrp.com
- CYG-212
-
-
-
-
-
-
diff --git a/Week1-Project/ArpitDave_007/index.html b/Week1-Project/ArpitDave_007/index.html
deleted file mode 100644
index d4f2107..0000000
--- a/Week1-Project/ArpitDave_007/index.html
+++ /dev/null
@@ -1,109 +0,0 @@
-
-
-
-
-
- Project-1 : Sign up
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Please Sign up to continue.
-
Or Login to continue.
-
-
-
- Full Name :
- Address :
- Phone number :
- E-Mail ID :
- Employee ID :
- Password :
-
-
-
-
-
-
-
diff --git a/Week1-Project/ArpitDave_007/logo.png b/Week1-Project/ArpitDave_007/logo.png
deleted file mode 100644
index 7cfc009..0000000
Binary files a/Week1-Project/ArpitDave_007/logo.png and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/Background12.mp4 b/Week1-Project/BhawnaSharma003/Background12.mp4
deleted file mode 100644
index 65abf6d..0000000
Binary files a/Week1-Project/BhawnaSharma003/Background12.mp4 and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/Background2.mp4 b/Week1-Project/BhawnaSharma003/Background2.mp4
deleted file mode 100644
index 91e1655..0000000
Binary files a/Week1-Project/BhawnaSharma003/Background2.mp4 and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/CyberGroup.css b/Week1-Project/BhawnaSharma003/CyberGroup.css
deleted file mode 100644
index 1e51ba6..0000000
--- a/Week1-Project/BhawnaSharma003/CyberGroup.css
+++ /dev/null
@@ -1,70 +0,0 @@
-body
-{
- margin: 0;
- padding: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- background-image: url(Pic35.jpeg);
- background-size: 100% 100%;
- background-attachment: fixed;
-}
-ul
-{
- margin: 0;
- padding: 0;
- display: flex;
-}
-ul li
-{
- list-style: none;
- margin: 0 20px;
- transition: 0.5s;
-
-}
-ul li a{
- display: block;
- position: relative;
- text-decoration: none;
- padding: 10px;
- font-size: 37px;
- font-weight: bold;
- font-family:cursive;
- color: #fff;
- text-transform: uppercase;
- transition: 0.5s;
-
-}
-ul:hover li a
-{
- transform: scale(1.5);
- opacity: .2;
- filter: blur(5px);
-}
-ul li a:hover
-{
- transform: scale(2);
- opacity: 1;
- filter: blur(0);
- filter: blur(0);
-}
-ul li a: before{
- content: '';
- position: absolute;
- top:0;
- left:0;
- width:100%;
- height:100%;
- background: #ff497c;
- transition: transform 0.5s;
- transform-origin: right;
- transform: scaleX(0);
- z-index: -1;
-}
-ul li a :hover:before
-{
- transition: transform 0.5s;
- transform-origin: left;
- transform: scaleX(1);
-}
\ No newline at end of file
diff --git a/Week1-Project/BhawnaSharma003/CyberGroup.html b/Week1-Project/BhawnaSharma003/CyberGroup.html
deleted file mode 100644
index be4ea72..0000000
--- a/Week1-Project/BhawnaSharma003/CyberGroup.html
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
- Cyber Group
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/BhawnaSharma003/EnterDetails.css b/Week1-Project/BhawnaSharma003/EnterDetails.css
deleted file mode 100644
index 2ea1d1c..0000000
--- a/Week1-Project/BhawnaSharma003/EnterDetails.css
+++ /dev/null
@@ -1,235 +0,0 @@
-body{
- background-image: url("Pic22.jpg");
- background-size: 100% 100%;
- background-attachment: fixed;
- margin: 0;
- padding: 0;
- font-family: sans-serif;
-}
-
-
-.loginBox{
- position: absolute;
- top: 63%;
- left: 30%;
- transform: translate(-50%,-50%);
- width: 300px;
- height: 650px;
- padding: 40px 40px;
- box-sizing: border-box;
- background: rgba(0,0,0,0);
-
-}
-.loginBox1{
- position: absolute;
- top: 63%;
- left: 50%;
- transform: translate(-50%,-50%);
- width: 300px;
- height: 650px;
- padding: 40px 40px;
- box-sizing: border-box;
- background: rgba(0,0,0,0);
-
-}
-.loginBox2{
- position: absolute;
- top: 63%;
- left: 70%;
- transform: translate(-50%,-50%);
- width: 300px;
- height: 650px;
- padding: 40px 40px;
- box-sizing: border-box;
- background: rgba(0,0,0,0);
-
-}
-
-
-
-.loginBox p{
- margin:0;
- padding: 0;
- font-weight: bold;
- color:#fff;
-
-}
-.loginBox1 p{
- margin:0;
- padding: 0;
- font-weight: bold;
- color:#fff;
-
-}
-.loginBox2 p{
- margin:0;
- padding: 0;
- font-weight: bold;
- color:#fff;
-
-}
-
-
-
-.loginBox input{
- width: 100%;
- margin-bottom: 20px;
-
-}
-.loginBox1 input{
- width: 100%;
- margin-bottom: 20px;
-
-}
-.loginBox2 input{
- width: 100%;
- margin-bottom: 20px;
-
-}
-
-
-.loginBox input[type="date"]{
- border: none;
- background: transparent;
- color:gray;
- font-size: 14px;
- border-bottom: 1px solid #fff;
- height: 40px;
-}
-.loginBox1 input[type="number"]{
- border: none;
- background: transparent;
- color:white;
- font-size: 14px;
- border-bottom: 1px solid #fff;
- height: 40px;
-}
-.loginBox2 input[type="number"]{
- border: none;
- background: transparent;
- color:white;
- font-size: 14px;
- border-bottom: 1px solid #fff;
- height: 40px;
-}
-.loginBox1 input[type="date"]{
- border: none;
- background: transparent;
- color:gray;
- font-size: 14px;
- border-bottom: 1px solid #fff;
- height: 40px;
-}
-.loginBox input[type="number"]{
- border: none;
- background: transparent;
- color:white;
- font-size: 14px;
- border-bottom: 1px solid #fff;
- height: 40px;
-}
-
-.loginBox2 input[type="url"]{
- border: none;
- background: transparent;
- color:white;
- font-size: 14px;
- border-bottom: 1px solid #fff;
- height: 40px;
-}
-
-
-.loginBox input[type="text"]{
- border: none;
- border-bottom: 1px solid #fff;
- background: transparent;
- outline: none;
- height: 40px;
- color: #fff;
- font-size: 14px;
-}
-.loginBox1 input[type="text"]{
- border: none;
- border-bottom: 1px solid #fff;
- background: transparent;
- outline: none;
- height: 40px;
- color: #fff;
- font-size: 14px;
-}
-.loginBox2 input[type="text"]{
- border: none;
- border-bottom: 1px solid #fff;
- background: transparent;
- outline: none;
- height: 40px;
- color: #fff;
- font-size: 14px;
-}
-
-
-
-::placeholder{
- color: rgba(255,255,255,.5);
-}
-
-.loginBox input[type="button"]
-{
- border: none;
- outline: none;
- height: 40px;
- color:white ;
- font-size: 30px;
- font-family: serif;
- background-image: url("Pic28.jpg");
- box-shadow: 5px 5px 5px black;
- font-weight: bold;
- cursor: pointer;
-
-}
-
-.loginBox input[type="button"]:hover{
- background-image: url("Pic24.jpeg");
- box-shadow: 5px 5px 5px black;
-}
-
-
-.loginBox1 input[type="button"]
-{
- border: none;
- outline: none;
- height: 40px;
- color:white ;
- font-size: 30px;
- font-family: serif;
- background-image: url("Pic28.jpg");
- box-shadow: 5px 5px 5px black;
- font-weight: bold;
- cursor: pointer;
-
-}
-
-.loginBox1 input[type="button"]:hover{
- background-image: url("Pic24.jpeg");
- box-shadow: 5px 5px 5px black;
-}
-
-.loginBox2 input[type="button"]
-{
- border: none;
- outline: none;
- height: 40px;
- color:white ;
- font-size: 30px;
- font-family: serif;
- background-image: url("Pic28.jpg");
- box-shadow: 5px 5px 5px black;
- font-weight: bold;
- cursor: pointer;
-
-}
-
-.loginBox2 input[type="button"]:hover{
- background-image: url("Pic24.jpeg");
- box-shadow: 5px 5px 5px black;
-}
diff --git a/Week1-Project/BhawnaSharma003/EnterDetails.html b/Week1-Project/BhawnaSharma003/EnterDetails.html
deleted file mode 100644
index 7e5e0a0..0000000
--- a/Week1-Project/BhawnaSharma003/EnterDetails.html
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
- Employee Details
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Week1-Project/BhawnaSharma003/List.css b/Week1-Project/BhawnaSharma003/List.css
deleted file mode 100644
index 7dcae0a..0000000
--- a/Week1-Project/BhawnaSharma003/List.css
+++ /dev/null
@@ -1,70 +0,0 @@
-h2{
- margin:0;
-
- color: brown;
- font-size: 40px;
- font-family: cursive;
- text-align: center;
- font-weight: "bold";
-}
-body{
- background-image: url("pic23.jpg");
- background-size: 100% 100%;
- background-attachment: fixed;
- margin: 0;
- padding: 0;
- font-family: sans-serif;
-}
-
-
-.loginBox{
- position: absolute;
- top: 70%;
- left: 40%;
- transform: translate(-40%,-50%);
- width: 300px;
- height: 650px;
- padding: 40px 40px;
- box-sizing: border-box;
- background: rgba(0,0,0,0);
-
-}
-
-table, th, td{
- border:1px solid black;
-
-
-}
-th, td{
- padding: 10px;
- text-align: center;
-}
-th{
- color: blueviolet;
-}
-.loginBox input[type="button"]
-{
- border: none;
- outline: none;
- height: 40px;
- color:white;
- font-size: 30px;
- font-family: serif;
- background-image: url("pic34.jpeg");
-
-
- box-shadow: 5px 5px 5px black;
- font-weight: bold;
- cursor: pointer;
- width: 300px;
- transform: translate(30%,10%);
-}
-.loginBox input[type="button"]:hover{
- background-image: url("Pic31.jpg");
- box-shadow: 5px 5px 5px black;
-}
-
-
-
-
-
diff --git a/Week1-Project/BhawnaSharma003/List.html b/Week1-Project/BhawnaSharma003/List.html
deleted file mode 100644
index c008873..0000000
--- a/Week1-Project/BhawnaSharma003/List.html
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
- List Of Members
-
-
-
-
-
-
-
- Members Of Our Family
-
-
-
- S. No.
- Name
- Phone Number
- Email Id
-
-
- 1
- Neeraj Shridhar
- 9989898989
- neeraj.shridhar@cygrp.com
-
-
- 2
- Shweta Prasad
- 9879879876
- shweta.prasad@cygrp.com
-
-
- 3
- Anupriya Bhasin
- 9819876987
- anupriya.bhasin@cygrp.com
-
-
- 4
- Bhawna Sharma
- 9879876756
- bhawna.sharma@gmail.com
-
-
- 5
- Danial Stein
- 9876543210
- daniel.stein@cygrp.com
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Week1-Project/BhawnaSharma003/LoginPage.css b/Week1-Project/BhawnaSharma003/LoginPage.css
deleted file mode 100644
index 3101b5a..0000000
--- a/Week1-Project/BhawnaSharma003/LoginPage.css
+++ /dev/null
@@ -1,84 +0,0 @@
-body{
- background-color: aliceblue;
- background-size: cover;
- margin: 0;
- padding: 0;
- font-family: sans-serif;
-}
-.video_selector{
- position: fixed;
- right: 0;
- bottom: 0;
- min-width: 100%;
- min-height: 100%;
- width: auto;
- height: auto;
- z-index: -999;
-}
-.loginBox{
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- width: 500px;
- height: 480px;
- padding: 40px 40px;
- box-sizing: border-box;
- background: rgba(0,0,0,.5);
- box-shadow: 10px 5px 5px black;
-}
-h2{
- margin:0;
- padding: 0 0 60px;
- color: lightblue;
- font-size: 30px;
- font-family: serif;
- text-align: center;
-}
-.loginBox p{
- margin:0;
- padding: 0;
- font-weight: bold;
- color:#fff;
-
-}
-.loginBox input{
- width: 100%;
- margin-bottom: 20px;
-
-}
-.loginBox input[type="text"],.loginBox input[type="password"]{
- border: none;
- border-bottom: 1px solid #fff;
- background: transparent;
- outline: none;
- height: 40px;
- color: #fff;
- font-size: 16px;
-}
-::placeholder{
- color: rgba(255,255,255,.5);
-}
-.loginBox input[type="button"]
-{
- border: none;
- outline: none;
- height: 40px;
- color: black;
- font-size: 20px;
- font-family: serif;
- background-image: url("pic10.jpeg");
- box-shadow: 5px 5px 5px cadetblue;
- font-weight: bold;
- cursor: pointer;
- border-radius: 20px;
-}
-.loginBox a{
- font-size: 16px;
- color: darkgray;
- text-align: center;
-}
-.loginBox input[type="button"]:hover{
- background-image: url("pic17.jpeg");
- box-shadow: 5px 5px 5px chocolate;
-}
\ No newline at end of file
diff --git a/Week1-Project/BhawnaSharma003/LoginPage.html b/Week1-Project/BhawnaSharma003/LoginPage.html
deleted file mode 100644
index c2cb0cc..0000000
--- a/Week1-Project/BhawnaSharma003/LoginPage.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
- Log In
-
-
-
-
-
-
-
-
-
-
WELCOME, Please Log In
-
-
-
-
- you have an older version of browser
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/BhawnaSharma003/Pic22.jpg b/Week1-Project/BhawnaSharma003/Pic22.jpg
deleted file mode 100644
index abe6f20..0000000
Binary files a/Week1-Project/BhawnaSharma003/Pic22.jpg and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/Pic24.jpeg b/Week1-Project/BhawnaSharma003/Pic24.jpeg
deleted file mode 100644
index 65c0974..0000000
Binary files a/Week1-Project/BhawnaSharma003/Pic24.jpeg and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/Pic28.jpg b/Week1-Project/BhawnaSharma003/Pic28.jpg
deleted file mode 100644
index 0d82b58..0000000
Binary files a/Week1-Project/BhawnaSharma003/Pic28.jpg and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/Pic31.jpg b/Week1-Project/BhawnaSharma003/Pic31.jpg
deleted file mode 100644
index b4d88e6..0000000
Binary files a/Week1-Project/BhawnaSharma003/Pic31.jpg and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/Pic35.jpeg b/Week1-Project/BhawnaSharma003/Pic35.jpeg
deleted file mode 100644
index 1147e55..0000000
Binary files a/Week1-Project/BhawnaSharma003/Pic35.jpeg and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/README.md b/Week1-Project/BhawnaSharma003/README.md
deleted file mode 100644
index 138cffe..0000000
--- a/Week1-Project/BhawnaSharma003/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-NETLIFY LINK
-
-https://bhawnasharma003.netlify.com/index.html
diff --git a/Week1-Project/BhawnaSharma003/SignUpPage.css b/Week1-Project/BhawnaSharma003/SignUpPage.css
deleted file mode 100644
index ebbb493..0000000
--- a/Week1-Project/BhawnaSharma003/SignUpPage.css
+++ /dev/null
@@ -1,85 +0,0 @@
-body{
- background-color: aliceblue;
- background-size: cover;
- margin: 0;
- padding: 0;
- font-family: sans-serif;
-}
-.video_selector{
- position: fixed;
- right: 0;
- bottom: 0;
- min-width: 100%;
- min-height: 100%;
- width: auto;
- height: auto;
- z-index: -999;
-}
-.loginBox{
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- width: 500px;
- height: 600px;
- padding: 40px 40px;
- box-sizing: border-box;
- background: rgba(0,0,0,.8);
- box-shadow: 2px 4px 4px white;
- border-radius: 20px;
-}
-h2{
- margin:0;
- padding: 0 0 30px;
- color: darkorange;
- font-size: 30px;
- font-family: serif;
- text-align: center;
-}
-.loginBox p{
- margin:0;
- padding: 0;
- font-weight: bold;
- color:#fff;
-
-}
-.loginBox input{
- width: 100%;
- margin-bottom: 20px;
-
-}
-.loginBox input[type="text"],.loginBox input[type="password"]{
- border: none;
- border-bottom: 1px solid #fff;
- background: transparent;
- outline: none;
- height: 40px;
- color: #fff;
- font-size: 14px;
-}
-::placeholder{
- color: rgba(255,255,255,.5);
-}
-.loginBox input[type="button"]
-{
- border: none;
- outline: none;
- height: 40px;
- color: black;
- font-size: 20px;
- font-family: serif;
- background-image: url("pic17.jpeg");
- box-shadow: 5px 5px 5px chocolate;
- font-weight: bold;
- cursor: pointer;
- border-radius: 20px;
-}
-.loginBox a{
- font-size: 16px;
- color: darkgray;
- text-align: center;
-}
-.loginBox input[type="button"]:hover{
- background-image: url("pic20.jpeg");
- box-shadow: 5px 5px 5px gray;
-}
\ No newline at end of file
diff --git a/Week1-Project/BhawnaSharma003/SignUpPage.html b/Week1-Project/BhawnaSharma003/SignUpPage.html
deleted file mode 100644
index 3848180..0000000
--- a/Week1-Project/BhawnaSharma003/SignUpPage.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
- Sign Up
-
-
-
-
-
-
-
-
-
-
Create A New Account
-
-
-
-
- you have an older version of browser
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/BhawnaSharma003/logo.png b/Week1-Project/BhawnaSharma003/logo.png
deleted file mode 100644
index 1d1dd57..0000000
Binary files a/Week1-Project/BhawnaSharma003/logo.png and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/pic10.jpeg b/Week1-Project/BhawnaSharma003/pic10.jpeg
deleted file mode 100644
index c17cf37..0000000
Binary files a/Week1-Project/BhawnaSharma003/pic10.jpeg and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/pic17.jpeg b/Week1-Project/BhawnaSharma003/pic17.jpeg
deleted file mode 100644
index 12014c6..0000000
Binary files a/Week1-Project/BhawnaSharma003/pic17.jpeg and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/pic20.jpeg b/Week1-Project/BhawnaSharma003/pic20.jpeg
deleted file mode 100644
index ad08dcd..0000000
Binary files a/Week1-Project/BhawnaSharma003/pic20.jpeg and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/pic23.jpg b/Week1-Project/BhawnaSharma003/pic23.jpg
deleted file mode 100644
index 1ce9ec7..0000000
Binary files a/Week1-Project/BhawnaSharma003/pic23.jpg and /dev/null differ
diff --git a/Week1-Project/BhawnaSharma003/pic34.jpeg b/Week1-Project/BhawnaSharma003/pic34.jpeg
deleted file mode 100644
index e042988..0000000
Binary files a/Week1-Project/BhawnaSharma003/pic34.jpeg and /dev/null differ
diff --git a/Week1-Project/Deepak Pahuja 002/README.md b/Week1-Project/Deepak Pahuja 002/README.md
deleted file mode 100644
index e231f50..0000000
--- a/Week1-Project/Deepak Pahuja 002/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-Made the week 1 project which includes the front end of the webpages like login, signup, create new user, list of all user, details of any user.
-
-Review the code on this netlify link - https://elated-fermat-80ab42.netlify.com/
diff --git a/Week1-Project/Deepak Pahuja 002/create_user.html b/Week1-Project/Deepak Pahuja 002/create_user.html
deleted file mode 100644
index 1f70e67..0000000
--- a/Week1-Project/Deepak Pahuja 002/create_user.html
+++ /dev/null
@@ -1,254 +0,0 @@
-
-
-
-
-
-
- LogIn Page
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Deepak Pahuja 002/css/create_user.css b/Week1-Project/Deepak Pahuja 002/css/create_user.css
deleted file mode 100644
index 17f24dc..0000000
--- a/Week1-Project/Deepak Pahuja 002/css/create_user.css
+++ /dev/null
@@ -1,82 +0,0 @@
-ul.navbar-nav{
- float: right;
-}
-.navbar-default{
- padding: 10px 40px;
-}
-.navbar-header{
- width: 200px;
-}
-.background_pic{
- min-height: 100vh;
- background-image: url(https://images.unsplash.com/photo-1536553176585-67a46418b7d1?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=882&q=80);
- background-repeat: no-repeat;
- background-position: center center;
- background-size: cover;
- width: 100%;
- overflow-x: scroll;
-
-}
-.overlay {
- background-color: rgba(0, 0, 0, 0.7);
- top: 0;
- left: 0;
- width: 100%;
- height: 100vh;
- position: relative;
- z-index: 1;
- overflow-x: scroll;
-}
-.navbar-default .navbar-nav>li>a{
- color: white;
-}
-.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{
- color: black;
- font-weight: 600;
- background-color: greenyellow;
- border-radius: 10px;
-}
-.navbar-nav>li{
- border-radius: 15px;
-}
-.active{
- background-color: green;
- color: green;
-}
-
-
-////////////////////////////////// Navbar code above this point //////////////////////////////
-
-
-
-.create_your_profile_heading{
- text-align: center;
- font-size: 30px;
- letter-spacing: 2px;
-}
-.container{
- background-color: white;
- color: black;
- border-radius: 25px;
- padding: 20px;
- max-width: 800px;
-}
-.container .row{
- padding: 10px;
- border-radius: 15px;
-}
-input.form-control{
- border-color: black;
-}
-div.form_heading, .main_heading{
- /* width: 100%; */
- background-color: #000;
- color: white;
- margin-bottom: 20px;
- text-transform: uppercase;
-}
-.main_heading{
- margin-top: 10px;
- margin-bottom: 40px;
- background-color: green;
-}
diff --git a/Week1-Project/Deepak Pahuja 002/css/login.css b/Week1-Project/Deepak Pahuja 002/css/login.css
deleted file mode 100644
index b3b068d..0000000
--- a/Week1-Project/Deepak Pahuja 002/css/login.css
+++ /dev/null
@@ -1,105 +0,0 @@
-ul.navbar-nav{
- float: right;
-}
-.navbar-default{
- padding: 10px 40px;
-}
-.navbar-header{
- width: 200px;
-}
-.background_pic{
- height: 100vh;
- background-image: url(https://images.unsplash.com/photo-1536553176585-67a46418b7d1?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=882&q=80);
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- width: 100%;
-
-}
-.overlay {
- background-color: rgba(0, 0, 0, 0.7);
- top: 0;
- left: 0;
- width: 100%;
- height: 100vh;
- position: relative;
- z-index: 1;
-}
-.container{
- background-color: white;
- border-radius: 15px;
- box-sizing: border-box;
- padding: 50px ;
- color: black;
- margin-top: 60px;
- padding-top: 30px;
- max-width: 500px;
-}
-.navbar-default .navbar-nav>li>a{
- color: white;
-}
-.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{
- color: black;
- font-weight: 600;
- background-color: greenyellow;
- border-radius: 10px;
-}
-.navbar-nav>li{
- border-radius: 15px;
-}
-.active{
- background-color: green;
- color: green;
-}
-
-////////////////////////////////// Navbar code above this point //////////////////////////////
-
-
-.btn{
- width: 100%;
- border-radius: 15px;
-}
-.col .col-lg-6{
- width: 100%;
-}
-#sign_in_options{
- margin-top: 15px;;
-}
-.sign_in_options_button{
- padding: 10px;
- color: white;
- width: 100%;
- border-radius: 10px;
- border-style: none;
-}
-.sign_in_options_button:hover{
- box-shadow: 5px 5px 5px 1px gray;
-}
-.google{
-background-color: #d34836;
-}
-.facebook{
-background-color: #4267b2;
-}
-.login_heading{
- text-align: center;
- max-width: 50px;
- margin: 0 auto;
- width: 100%;
- margin: 150px;
- font-size: 30px;
- font-weight: 600;
- letter-spacing: 2px;
-}
-div#go_to_signup_page{
- margin-top: 20px;
-}
-.go_to_signup_page{
- color:blue;
- outline-color: none;
- text-decoration: underline;
- margin-left: 70px;
-}
-
-
-
diff --git a/Week1-Project/Deepak Pahuja 002/css/main.css b/Week1-Project/Deepak Pahuja 002/css/main.css
deleted file mode 100644
index eaa9ee3..0000000
--- a/Week1-Project/Deepak Pahuja 002/css/main.css
+++ /dev/null
@@ -1,67 +0,0 @@
-ul.navbar-nav{
- float: right;
-}
-.navbar-default{
- padding: 10px 40px;
-}
-.navbar-header{
- width: 200px;
-}
-.background_pic{
- height: 100vh;
- background-image: url(https://images.unsplash.com/photo-1536553176585-67a46418b7d1?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=882&q=80);
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- width: 100%;
-
-}
-.overlay {
- background-color: rgba(0, 0, 0, 0.7);
- top: 0;
- left: 0;
- width: 100%;
- height: 100vh;
- position: relative;
- z-index: 1;
-}
-.container{
- background-color: white;
- border-radius: 15px;
- box-sizing: border-box;
- padding: 50px ;
- color: black;
- margin-top: 60px;
- padding-top: 30px;
- max-width: 500px;
-}
-.navbar-default .navbar-nav>li>a{
- color: white;
-}
-.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{
- color: black;
- font-weight: 600;
- background-color: greenyellow;
- border-radius: 10px;
-}
-.navbar-nav>li{
- border-radius: 15px;
-}
-.active{
- background-color: green;
- color: green;
-}
-
-////////////////////////////////// Navbar code above this point //////////////////////////////
-
-.my_class{
- text-decoration: none;
- color: white;
- width: 100px;
-
-}
-.my_class:hover{
- text-decoration: none;
- color: white;
-
-}
\ No newline at end of file
diff --git a/Week1-Project/Deepak Pahuja 002/css/required_user.css b/Week1-Project/Deepak Pahuja 002/css/required_user.css
deleted file mode 100644
index 26a4d26..0000000
--- a/Week1-Project/Deepak Pahuja 002/css/required_user.css
+++ /dev/null
@@ -1,82 +0,0 @@
-ul.navbar-nav{
- float: right;
-}
-.navbar-default{
- padding: 10px 40px;
-}
-.navbar-header{
- width: 200px;
-}
-
-.navbar-default .navbar-nav>li>a{
- color: white;
-}
-.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{
- color: black;
- font-weight: 600;
- background-color: greenyellow;
- border-radius: 10px;
-}
-.navbar-nav>li{
- border-radius: 15px;
-}
-.active{
- background-color: green;
- color: green;
-}
-
-
-////////////////////////////////// Navbar code above this point //////////////////////////////
-
-.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{
- color: black;
- font-weight: 600;
- background-color: greenyellow;
- border-radius: 10px;
-}
-img .Profile_photo{
- border-radius: 141px;
-}
-.btn_div{
- margin-right: 0px;
- margin-left: 0px;
-}
-.main_heading{
- font-size: 30px;
- color: white;
- line-height: 110px;
- text-transform: uppercase;
- text-align: left;
-}
-.sign_in_options_button{
- padding: 10px 20px;
- color: white;
- border-radius: 10px;
- border-style: none;
-}
-.sign_in_options_button:hover{
- box-shadow: 5px 5px 10px 1px rgba(255,255,255,0.7);
-}
-div.form_heading{
- /* width: 100%; */
- background-color: yellowgreen;
- border-radius: 30px;
- font-weight: bold;
- font-size: 1.2em;
- padding: 15px;
- text-align: center;
- color: black;
- margin-bottom: 20px;
- margin-top: 20px;
- text-transform: uppercase;
-}
-.row{
- margin: 20px auto 15px auto;
-}
-.container .required_user_container{
- color: white;
- text-align: center;
-}
-
-
-
diff --git a/Week1-Project/Deepak Pahuja 002/css/signup.css b/Week1-Project/Deepak Pahuja 002/css/signup.css
deleted file mode 100644
index 6878b85..0000000
--- a/Week1-Project/Deepak Pahuja 002/css/signup.css
+++ /dev/null
@@ -1,103 +0,0 @@
-ul.navbar-nav{
- float: right;
-}
-.navbar-default{
- padding: 10px 40px;
-}
-.navbar-header{
- width: 200px;
-}
-.background_pic{
- height: 100vh;
- background-image: url(https://images.unsplash.com/photo-1536553176585-67a46418b7d1?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=882&q=80);
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- width: 100%;
-
-}
-.overlay {
- background-color: rgba(0, 0, 0, 0.7);
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- position: relative;
- z-index: 1;
-}
-.container{
- background-color: white;
- border-radius: 15px;
- box-sizing: border-box;
- padding: 50px ;
- color: black;
- margin-top: 40px;
- padding-top: 30px;
- padding-bottom: 40px;
- max-width: 500px;
-}.navbar-default .navbar-nav>li>a{
- color: white;
-}
-.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{
- color: black;
- font-weight: 600;
- background-color: greenyellow;
- border-radius: 10px;
-}
-.navbar-nav>li{
- border-radius: 15px;
-}
-.active{
- background-color: green;
- color: green;
-}
-.btn{
- width: 100%;
- border-radius: 15px;
-}
-.col .col-lg-6{
- width: 100%;
-}
-#sign_in_options{
- margin-top: 15px;;
-}
-.sign_in_options_button{
- padding: 10px;
- color: white;
- width: 100%;
- border-radius: 10px;
- border-style: none;
-}
-.sign_in_options_button:hover{
- box-shadow: 5px 5px 5px 1px gray;
-
-}
-.google{
-background-color: #d34836;
-}
-.facebook{
-background-color: #4267b2;
-}
-.signup_heading{
- text-align: center;
- max-width: 50px;
- margin: 0 auto;
- width: 100%;
- margin: 135px;
- font-size: 30px;
- font-weight: 600;
- letter-spacing: 2px;
-}
-div#go_to_login_page{
- margin-top: 20px;
-}
-.go_to_login_page{
- color:blue;
- outline-color: none;
- text-decoration: underline;
- margin-left: 120px;
-}
-
-
-
-
diff --git a/Week1-Project/Deepak Pahuja 002/css/user_list.css b/Week1-Project/Deepak Pahuja 002/css/user_list.css
deleted file mode 100644
index e447c75..0000000
--- a/Week1-Project/Deepak Pahuja 002/css/user_list.css
+++ /dev/null
@@ -1,84 +0,0 @@
-ul.navbar-nav{
- float: right;
-}
-.navbar-default{
- padding: 10px 40px;
-}
-.navbar-header{
- width: 200px;
-}
-.background_pic{
- min-height: 100%;
- overflow-x: scroll;
- background-image: url(https://images.unsplash.com/photo-1536553176585-67a46418b7d1?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=882&q=80);
- background-repeat: no-repeat;
- background-position: center center;
- background-attachment: fixed;
- background-size: cover;
- width: 100%;
-
-}
-.overlay {
- background-color: rgba(0, 0, 0, 0.7);
- top: 0;
- left: 0;
- width: 100%;
- height: 100vh;
- position: relative;
- z-index: 1;
- overflow-x: scroll;
-
-}
-.navbar-default .navbar-nav>li>a{
- color: white;
-}
-.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{
- color: black;
- font-weight: 600;
- background-color: greenyellow;
- border-radius: 10px;
-}
-.navbar-nav>li{
- border-radius: 15px;
-}
-.active{
- background-color: green;
- color: green;
-}
-
-
-////////////////////////////////// Navbar code above this point //////////////////////////////
-
-
-
-.create_your_profile_heading{
- text-align: center;
- font-size: 30px;
- letter-spacing: 2px;
-}
-.container{
- background-color: white;
- color: black;
- border-radius: 25px;
- padding: 20px;
- max-width: 1000px;
-}
-.container .row{
- padding: 10px;
- border-radius: 15px;
-}
-input.form-control{
- border-color: black;
-}
-div.form_heading, .main_heading{
- /* width: 100%; */
- background-color: #000;
- color: white;
- margin-bottom: 20px;
- text-transform: uppercase;
-}
-.main_heading{
- margin-top: 10px;
- margin-bottom: 40px;
- background-color: green;
-}
diff --git a/Week1-Project/Deepak Pahuja 002/index.html b/Week1-Project/Deepak Pahuja 002/index.html
deleted file mode 100644
index cae74a0..0000000
--- a/Week1-Project/Deepak Pahuja 002/index.html
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
- LogIn Page
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Deepak Pahuja 002/js/login.js b/Week1-Project/Deepak Pahuja 002/js/login.js
deleted file mode 100644
index e69de29..0000000
diff --git a/Week1-Project/Deepak Pahuja 002/list.html b/Week1-Project/Deepak Pahuja 002/list.html
deleted file mode 100644
index 2b24862..0000000
--- a/Week1-Project/Deepak Pahuja 002/list.html
+++ /dev/null
@@ -1,165 +0,0 @@
-
-
-
-
-
-
- LogIn Page
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Deepak Pahuja 002/login.html b/Week1-Project/Deepak Pahuja 002/login.html
deleted file mode 100644
index d3ac177..0000000
--- a/Week1-Project/Deepak Pahuja 002/login.html
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
-
- LogIn Page
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Deepak Pahuja 002/required_user.html b/Week1-Project/Deepak Pahuja 002/required_user.html
deleted file mode 100644
index 3b1d489..0000000
--- a/Week1-Project/Deepak Pahuja 002/required_user.html
+++ /dev/null
@@ -1,235 +0,0 @@
-
-
-
-
-
-
- LogIn Page
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Deepak Pahuja Profile
-
-
-
-
-
-
-
-
-
Personal Information
-
-
-
-
-
-
-
-
-
-
Lorem State
-
-
Ipsum city
-
-
-
-
-
-
-
-
New Delhi
-
-
110045
-
-
-
-
-
-
-
-
4444555566
-
-
55556666677
-
-
-
-
-
-
-
-
-
19/12/1996
-
-
Unmarried
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Job Information
-
-
-
-
-
Consultant 1
-
-
INT 002
-
-
-
-
-
-
-
Shivam Rastogi
-
-
Technical
-
-
-
-
-
-
-
Noida
-
-
deepak.pahuja@cygrp.com
-
-
-
-
-
-
-
07/01/1996
-
-
4.5 LPA
-
-
-
-
-
-
-
-
-
-
-
Emergency Contact Information
-
-
-
-
-
- Deepak
-
-
- Pahuja
-
-
-
-
-
-
-
Lorem Address
-
-
Ipsum City
-
-
-
-
-
-
-
-
-
-
-
4444555566
-
-
5555666677
-
-
-
-
-
-
- SAVE PROFILE
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Deepak Pahuja 002/signup.html b/Week1-Project/Deepak Pahuja 002/signup.html
deleted file mode 100644
index 46ac1ce..0000000
--- a/Week1-Project/Deepak Pahuja 002/signup.html
+++ /dev/null
@@ -1,91 +0,0 @@
-
-
-
-
-
-
- LogIn Page
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/DeepakBansal019/CEO.jpg b/Week1-Project/DeepakBansal019/CEO.jpg
deleted file mode 100644
index 0983f88..0000000
Binary files a/Week1-Project/DeepakBansal019/CEO.jpg and /dev/null differ
diff --git a/Week1-Project/DeepakBansal019/EntityDesignerDiagram.bmp b/Week1-Project/DeepakBansal019/EntityDesignerDiagram.bmp
deleted file mode 100644
index f059ca9..0000000
Binary files a/Week1-Project/DeepakBansal019/EntityDesignerDiagram.bmp and /dev/null differ
diff --git a/Week1-Project/DeepakBansal019/README.md b/Week1-Project/DeepakBansal019/README.md
deleted file mode 100644
index 026000c..0000000
--- a/Week1-Project/DeepakBansal019/README.md
+++ /dev/null
@@ -1 +0,0 @@
-https://github.com/cybergroupdevs/BootcampJan2019.git
\ No newline at end of file
diff --git a/Week1-Project/DeepakBansal019/afterlogin.html b/Week1-Project/DeepakBansal019/afterlogin.html
deleted file mode 100644
index 756ff72..0000000
--- a/Week1-Project/DeepakBansal019/afterlogin.html
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
- after login
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/DeepakBansal019/bglogin.png b/Week1-Project/DeepakBansal019/bglogin.png
deleted file mode 100644
index 16adbd3..0000000
Binary files a/Week1-Project/DeepakBansal019/bglogin.png and /dev/null differ
diff --git a/Week1-Project/DeepakBansal019/creacc.html b/Week1-Project/DeepakBansal019/creacc.html
deleted file mode 100644
index dad4602..0000000
--- a/Week1-Project/DeepakBansal019/creacc.html
+++ /dev/null
@@ -1,206 +0,0 @@
-
-
-
- new registration
-
-
-
-
-
-
-
-
-
-
-
- We build smart solutions
-
- Back
-
-
- Create Your Account
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/DeepakBansal019/createemp.html b/Week1-Project/DeepakBansal019/createemp.html
deleted file mode 100644
index 1d6f534..0000000
--- a/Week1-Project/DeepakBansal019/createemp.html
+++ /dev/null
@@ -1,261 +0,0 @@
-
-
-
- create employee
-
-
-
-
-
-
-
-
- We build smart solutions
- Back
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/DeepakBansal019/displayDetails.html b/Week1-Project/DeepakBansal019/displayDetails.html
deleted file mode 100644
index 364bcb8..0000000
--- a/Week1-Project/DeepakBansal019/displayDetails.html
+++ /dev/null
@@ -1,290 +0,0 @@
-
-
-
- display details
-
-
-
-
-
-
- We build smart solutions
- Back
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/DeepakBansal019/index.html b/Week1-Project/DeepakBansal019/index.html
deleted file mode 100644
index aac6908..0000000
--- a/Week1-Project/DeepakBansal019/index.html
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
-
-
-
-
-
-
- We build smart solutions
-
-
-
-
-
- Cyber Group is the partner that works with you side-by-side at every turn. We help companies grow in unison with the ever-changing marketplace by implementing solutions with fast entry-to-market results. With our company’s proven veteran leadership and exceptional employee retention rate, clients can be sure they are guided by only the most experienced advisors.. Founder/CEO BHOPI DHALL ==>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/DeepakBansal019/list.html b/Week1-Project/DeepakBansal019/list.html
deleted file mode 100644
index 59bf5e0..0000000
--- a/Week1-Project/DeepakBansal019/list.html
+++ /dev/null
@@ -1,160 +0,0 @@
-
-
-
- emplye list
-
-
-
-
-
- We build smart solutions
- Back
-
- Employees List
-
-
-
- ID
- Name
- User Name
- Employee No.
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/DeepakBansal019/login.html b/Week1-Project/DeepakBansal019/login.html
deleted file mode 100644
index 9a21c78..0000000
--- a/Week1-Project/DeepakBansal019/login.html
+++ /dev/null
@@ -1,164 +0,0 @@
-
-
-
- login
-
-
-
-
-
-
-
-
-
- We build smart solutions
- Back
-
-
-
Login
-
-
- >
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/DeepakBansal019/logo.png b/Week1-Project/DeepakBansal019/logo.png
deleted file mode 100644
index 7cfc009..0000000
Binary files a/Week1-Project/DeepakBansal019/logo.png and /dev/null differ
diff --git a/Week1-Project/DeepakBansal019/welback.jpg b/Week1-Project/DeepakBansal019/welback.jpg
deleted file mode 100644
index cb4e379..0000000
Binary files a/Week1-Project/DeepakBansal019/welback.jpg and /dev/null differ
diff --git a/Week1-Project/KalprikshBist_INT014/Index.HTML b/Week1-Project/KalprikshBist_INT014/Index.HTML
deleted file mode 100644
index affbcfc..0000000
--- a/Week1-Project/KalprikshBist_INT014/Index.HTML
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Sign Up!
-
-
-
-
-
-
-
-
-
-
-
Become a member today
-
Sign up for free!
-
-
-
-
-
-
-
-
-
-
- ©kalpriksh bist 2019-2020
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/KalprikshBist_INT014/README.md b/Week1-Project/KalprikshBist_INT014/README.md
deleted file mode 100644
index 81d234e..0000000
--- a/Week1-Project/KalprikshBist_INT014/README.md
+++ /dev/null
@@ -1 +0,0 @@
-# BootCamp Project1
diff --git a/Week1-Project/KalprikshBist_INT014/SignUp.txt b/Week1-Project/KalprikshBist_INT014/SignUp.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Week1-Project/KalprikshBist_INT014/SignUp_styles.css b/Week1-Project/KalprikshBist_INT014/SignUp_styles.css
deleted file mode 100644
index 416ae9f..0000000
--- a/Week1-Project/KalprikshBist_INT014/SignUp_styles.css
+++ /dev/null
@@ -1,91 +0,0 @@
-*{
- margin:0;
- padding:0;
-}
-header{
- width:100%;
- overflow: hidden;
- background-color:black;
- attachment: scroll ;
- opacity: 0.7;
- color: white;
- box-shadow: 2px 2px 2px 2px black;
-}
-body{
- width: 100%;
- color: white;
- background-image: url("http://smarterware.org/wp-content/uploads/2016/09/technology1.jpg") ;
-}
-.headerText{
- font-size:xx-large;
- width:40%;
- padding: 10px;
- margin-left: 5px;
-}
- nav{
- float: right;
- color: white;
- }
- .links{
- display: inline;
- padding-right: 20px;
- }
-.txtbox {
- padding: 15px;
- margin-left: 5px;
-}
-.CyberLogo{
- padding-top: 10px;
- margin-left: 10px;
- opacity: 1;
-}
-footer{
- color: white;
- margin-top:100%;
- background-color: black;
-}
-
-table{
- align-self: center;
- margin-left:35px;
- margin-top: 20px;
-
-}
-.button{
-
- width: 20%;
-}
-
-.button:hover{
- background-color: lightgrey;
- cursor: pointer ;
- color: black;
-}
-
-a{
- color: white;
-}
-
-.txtInput{
- padding: 10px;
-}
-@media only screen and (min-width:1000px) {
- footer{
- margin-top:25%;
- background-color: black;
- }
- .CyberLogo{
- margin-left: 10px;
- opacity: 1;
- }
- table{
- text-align: left;
- margin-left:20px;
- margin-top: 20px;
- }
- .button:hover{
- background-color: lightgrey;
- cursor: pointer ;
- color: black;
- }
-}
\ No newline at end of file
diff --git a/Week1-Project/KalprikshBist_INT014/createEmp.html b/Week1-Project/KalprikshBist_INT014/createEmp.html
deleted file mode 100644
index 6e008bc..0000000
--- a/Week1-Project/KalprikshBist_INT014/createEmp.html
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
-
-
-
- Employee Register
-
-
-
-
-
-
-
Employee details
-
-
-
-
-
- Post:-
- ########
-
-
-
- Address:-
- ########
-
-
-
- Phone no:-
- ########
-
-
-
- Aadhaar no:-
- ########
-
-
-
- PAN card no:-
- ########
-
-
-
- Bank Account no:-
- ########
-
-
-
-
-
-
- ©kalpriksh bist 2019-2020
-
-
-
-
-
-
-
-
-
diff --git a/Week1-Project/KalprikshBist_INT014/create_styles.css b/Week1-Project/KalprikshBist_INT014/create_styles.css
deleted file mode 100644
index f089954..0000000
--- a/Week1-Project/KalprikshBist_INT014/create_styles.css
+++ /dev/null
@@ -1,120 +0,0 @@
-*{
- margin: 0;
- padding: 0;
-}
-body{
- font-family: Calibri;
- background-color: white;
-}
-
-header{
-
- background:whitesmoke;
- overflow: hidden;
- box-shadow: 2px 2px 2px 2px gray;
- border-bottom-right-radius: 10px;
- border-bottom-left-radius: 10px;
- color: dimgrey;
-}
-.CyberLogo{
- display: none;
-
-}
-
-.noAvatar{
- padding: 20px;
-
- }
-.headText{
- position: relative;
- float: right ;
- margin-bottom: 10px;
-
- margin-right: 50%;
- margin-top: 20px;
- margin-bottom: 10px;
-}
-.bodytxt{
- margin-top: 10px;
- padding: 20px;
- background-color: whitesmoke;
- box-shadow: 2px 2px 2px 2px gray;
- border-bottom-right-radius: 10px;
- border-bottom-left-radius: 10px;
- margin-bottom: 30px;
- color: darkslategrey;
-}
-table{
- width: 100%;
- font-family: Calibri;
- margin-left: auto;
- margin-right:auto ;
- border-bottom-right-radius: 15px;
- border-bottom-left-radius: 15px;
-
- background-color: lightgrey;
- box-shadow: 2px 2px 2px 2px dimgrey;
- margin-bottom: 40px;
-}
-.info{
- text-align: center;
- padding: 10px;
-
-}
-.info1{
- text-align: left;
- background-color: whitesmoke;
- padding: 10px;
- border: solid;
- border-width:0.5px ;
- border-color: lightgrey;
-}
-
-nav{
- float: right;
-}
-.links{
- display: inline;
- margin-right: 10px;
-}
-a{
- color: black;
- margin-right: 5px;
-}
-footer{
- margin-top: 10px;
-}
-
-@media only screen and (min-width:1000px) {
-
- .headText{
- position: relative;
- margin-top: 135px;
- margin-right: 65%;
- margin-bottom: 20px;
- }
- .info{
- padding-right: 550px;
- }
- .info1{
- padding-right: 550px;
- }
-
- .CyberLogo{
- position: absolute;
- display: block;
- margin-left: 950px;
-
- margin-top: 20px;
-
- }
- .headText{
- position: relative;
- float: right ;
- margin-bottom: 10px;
-
- /*margin-right: 50%;*/
- /*margin-top: 20px;*/
- /*margin-bottom: 10px;*/
- }
-}
\ No newline at end of file
diff --git a/Week1-Project/KalprikshBist_INT014/fonts/arabic-font-2013.ttf b/Week1-Project/KalprikshBist_INT014/fonts/arabic-font-2013.ttf
deleted file mode 100644
index 0e0c121..0000000
Binary files a/Week1-Project/KalprikshBist_INT014/fonts/arabic-font-2013.ttf and /dev/null differ
diff --git a/Week1-Project/KalprikshBist_INT014/images/logo.png b/Week1-Project/KalprikshBist_INT014/images/logo.png
deleted file mode 100644
index 1d1dd57..0000000
Binary files a/Week1-Project/KalprikshBist_INT014/images/logo.png and /dev/null differ
diff --git a/Week1-Project/KalprikshBist_INT014/images/no_avatar.gif b/Week1-Project/KalprikshBist_INT014/images/no_avatar.gif
deleted file mode 100644
index 61a2c8f..0000000
Binary files a/Week1-Project/KalprikshBist_INT014/images/no_avatar.gif and /dev/null differ
diff --git a/Week1-Project/KalprikshBist_INT014/images/technology1.jpg b/Week1-Project/KalprikshBist_INT014/images/technology1.jpg
deleted file mode 100644
index 9e4bcf7..0000000
Binary files a/Week1-Project/KalprikshBist_INT014/images/technology1.jpg and /dev/null differ
diff --git a/Week1-Project/KalprikshBist_INT014/login page.html b/Week1-Project/KalprikshBist_INT014/login page.html
deleted file mode 100644
index 97e381e..0000000
--- a/Week1-Project/KalprikshBist_INT014/login page.html
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
- Sign Up!
-
-
-
-
-
-
-
-
-
-
-
Login
- Enter Credentials
-
-
-
-
-
- ©kalpriksh bist 2019-2020
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/KalprikshBist_INT014/login_styles.css b/Week1-Project/KalprikshBist_INT014/login_styles.css
deleted file mode 100644
index 6801cb0..0000000
--- a/Week1-Project/KalprikshBist_INT014/login_styles.css
+++ /dev/null
@@ -1,98 +0,0 @@
-*{
- margin: 0;
- padding: 0;
-}
-header{
- position: relative;
- width:100%;
- overflow: hidden;
- opacity: 0.8;
- background-color:black;
- color: white;
- box-shadow: 2px 2px 2px 2px black;
-}
-body{
-
- background-image:url("http://smarterware.org/wp-content/uploads/2016/09/technology1.jpg") ;
-
-}
-.links{
- color: white;
- display: inline;
- padding-right: 20px;
-}
-table{
- color: white;
- align-self: center;
- margin-left: 25px;
- margin-top: 50px;
-}
-.CyberLogo{
- position: relative;
- top: 10px;
-
-}
-.bodytxt{
- color: white;
- padding: 10px;
- margin-left: 10px;
-}
-.headtxt{
- color: white;
- padding-top: 20px;
- margin-left: 20px;
-}
-.button{
- width: 22%;
-}
-footer{
- overflow: hidden;
- color: white;
- margin-top:120%;
- background-color: black;
-}
-nav{
- padding-top: 10px;
- float: right;
- color: white;
-}
-a{
- color: white;
-}
-.textInput{
- padding: 5px;
-}
-.button:hover{
- background-color: lightgrey;
- cursor: pointer ;
- color: black;
-}
-
-@media only screen and (min-width:1000px) {
- footer{
- margin-top:30%;
- background-color: black;
- }
- .CyberLogo{
- margin-left: 10px;
- opacity: 1;
- }
- table{
- float: none;
- margin-left: 20px;
- margin-top: 10px;
- }
- .textInput{
- margin-top: 20px;
- }
- .button{
- margin-top: 20px;
- margin-left: 20px;
- }
- .button:hover{
- background-color: lightgrey;
- cursor: pointer ;
- color: black;
- }
-
-}
\ No newline at end of file
diff --git a/Week1-Project/KalprikshBist_INT014/practice.js b/Week1-Project/KalprikshBist_INT014/practice.js
deleted file mode 100644
index afaf208..0000000
--- a/Week1-Project/KalprikshBist_INT014/practice.js
+++ /dev/null
@@ -1,11 +0,0 @@
-function curry(a) {
- return function (b){
- return function (c) {
- return function (d) {
- return function (e) {
- return a+b+c+d+e;
- }
- }
- }
- }
- }
\ No newline at end of file
diff --git a/Week1-Project/KalprikshBist_INT014/table_info.html b/Week1-Project/KalprikshBist_INT014/table_info.html
deleted file mode 100644
index d2aaa10..0000000
--- a/Week1-Project/KalprikshBist_INT014/table_info.html
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
-
-
-
-
- Employee Table
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Employee Name
- Id
- Post
-
-
-
- John Doe
- Id1
- Post1
-
-
-
- Random2
- Id2
- Post2
-
-
-
- Random3
- Id3
- Post3
-
-
-
- Random4
- Id4
- Post4
-
-
-
- Random5
- Id5
- Post5
-
-
-
- Random6
- Id6
- Post6
-
-
-
-
- ©kalpriksh bist 2019-2020
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/KalprikshBist_INT014/table_styles.css b/Week1-Project/KalprikshBist_INT014/table_styles.css
deleted file mode 100644
index abf0f57..0000000
--- a/Week1-Project/KalprikshBist_INT014/table_styles.css
+++ /dev/null
@@ -1,116 +0,0 @@
-*{
- margin: 0;
- padding: 0;
-}
-
-body{
- background-color: white;
-}
-header
-{
- font-family: Calibri;
- background-color: whitesmoke;
- overflow: hidden;
- border-bottom-right-radius: 10px;
- border-bottom-left-radius: 10px;
- box-shadow: 2px 2px 2px 2px lightgrey;
-}
-.CyberLogo{
- margin-left: 10px;
- margin-top: 20px;
-
-}
-.headertxt{
- padding: 20px;
-
-}
-
-nav{
- float: right;
- margin-bottom: 10px;
-}
-.links{
- display: inline;
- margin-right: 10px;
-
-}
-a{
- color: dimgrey;
- margin-right: 5px;
-}
-
-
-table{
- width: 100%;
- font-family: Calibri;
- margin-left: auto;
- margin-right:auto ;
- text-align-all: center;
- background-color: whitesmoke;
- box-shadow: 2px 2px 2px 2px lightgrey;
- border-bottom-right-radius: 10px;
- border-bottom-left-radius: 10px;
- margin-bottom: 40px;
- margin-top: 20px;
- text-align: left;
-}
-
-.name{
- padding: 20px;
- font-family: "Comic Sans MS";
- border-style: solid;
- border-width: 0.5px;
- border-color: lightgrey;
-}
-.id{
- padding: 20px;
- border-style: solid;
- border-width: 0.5px;
- border-color: lightgrey;
- font-family: "Comic Sans MS";
-}
-.post{
- padding: 20px;
- border-width: 0.5px;
- border-style: solid;
- border-color: lightgrey;
- font-family: "Comic Sans MS";
-}
-.nameh{
- padding: 20px;
- font-family: "Comic Sans MS";
- border-style: solid;
- border-width: 0.5px;
- border-color: lightgrey;
- background-color: lightgrey;
-}
-.idh{
- padding: 20px;
- border-style: solid;
- border-width: 0.5px;
- border-color: lightgrey;
- font-family: "Comic Sans MS";
- background-color: lightgrey;
-}
-.posth{
- padding: 20px;
- border-width: 0.5px;
- border-style: solid;
- border-color: lightgrey;
- font-family: "Comic Sans MS";
- background-color: lightgrey;
-}
-footer {
-
-}
-h1{
- color: dimgrey;
-}
-
-h6{
- color: dimgrey;
-}
-
-.name:hover{
- background-color: darkgrey;
-}
diff --git a/Week1-Project/KshitijSachdeva_INT023/Create.html b/Week1-Project/KshitijSachdeva_INT023/Create.html
deleted file mode 100644
index 40bbefb..0000000
--- a/Week1-Project/KshitijSachdeva_INT023/Create.html
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
- Create FORM
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/KshitijSachdeva_INT023/List.html b/Week1-Project/KshitijSachdeva_INT023/List.html
deleted file mode 100644
index 08d4215..0000000
--- a/Week1-Project/KshitijSachdeva_INT023/List.html
+++ /dev/null
@@ -1,194 +0,0 @@
-
-
- List Page
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- SerialNo.
- CGI CODE
- First Name
- Last Name
- Department
- Designation
-
-
- 1
- int023
- Kshitij
- Sachdeva
- Engineering
- Intern
-
-
-
- 2
- int001
- Tushar
- Madaan
- Engineering
- Intern
-
-
-
- 3
- int005
- Nikhil
- Tayal
- Engineering
- Intern
-
-
-
-
- 4
- int027
- Srishty
- Rawat
- Engineering
- Intern
-
-
-
-
- 5
- int014
- shivam
- Sachdeva
- Engineering
- Intern
-
-
-
-
- 6
- int008
- Palak
- Kothari
- Engineering
- Intern
-
-
-
-
- 7
- int010
- Vibhor
- Garg
- Engineering
- Intern
-
-
-
- 8
- int025
- Manvik
- Sharma
- Engineering
- Intern
-
-
-
-
- 9
- int028
- Niharika
- Arora
- Engineering
- Intern
-
-
-
- 10
- int022
- Kartik
- Gupta
- Engineering
- Intern
-
-
-
- 11
- int012
- Priyanka
- Goyal
- Engineering
- Intern
-
-
-
- 12
- int024
- kunal
- Gupta
- Engineering
- Intern
-
-
-
- 13
- int016
- Rishab
- Jain
- Engineering
- Intern
-
-
-
- 14
- int029
- Naved
- Akthar
- Engineering
- Intern
-
-
-
-
- 15
- int019
- Sahil
- Sahni
- Engineering
- Intern
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/KshitijSachdeva_INT023/index.html b/Week1-Project/KshitijSachdeva_INT023/index.html
deleted file mode 100644
index 04cc2d5..0000000
--- a/Week1-Project/KshitijSachdeva_INT023/index.html
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
- index file
-
-
- Create page
- Login page
- List page
- signup page
- retrieve page
-
-
\ No newline at end of file
diff --git a/Week1-Project/KshitijSachdeva_INT023/login.html b/Week1-Project/KshitijSachdeva_INT023/login.html
deleted file mode 100644
index 4b8ec87..0000000
--- a/Week1-Project/KshitijSachdeva_INT023/login.html
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
- LOGIN FORM
-
-
-
-
-
-
-
-
-
-
-
-
- All rights reserved
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/KshitijSachdeva_INT023/logo.png b/Week1-Project/KshitijSachdeva_INT023/logo.png
deleted file mode 100644
index 7cfc009..0000000
Binary files a/Week1-Project/KshitijSachdeva_INT023/logo.png and /dev/null differ
diff --git a/Week1-Project/KshitijSachdeva_INT023/retrieve.html b/Week1-Project/KshitijSachdeva_INT023/retrieve.html
deleted file mode 100644
index 1e6002c..0000000
--- a/Week1-Project/KshitijSachdeva_INT023/retrieve.html
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-Retrieve
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Retrieve
-
-
-
-Name:
-Contact Number:
-Employee Id:
-Father's Name:
-Mother's Name:
-Address:
-Blood Group:
-Emergency Contact Number:
-
-
-
-
- All rights reserved
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/KshitijSachdeva_INT023/signup.html b/Week1-Project/KshitijSachdeva_INT023/signup.html
deleted file mode 100644
index 967c1b1..0000000
--- a/Week1-Project/KshitijSachdeva_INT023/signup.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
- Signup FORM
-
-
-
-
-
-
-
-
-
-
-
- All rights reserved
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/NavneetJuneja004/Background2.mp4 b/Week1-Project/NavneetJuneja004/Background2.mp4
deleted file mode 100644
index 91e1655..0000000
Binary files a/Week1-Project/NavneetJuneja004/Background2.mp4 and /dev/null differ
diff --git a/Week1-Project/NavneetJuneja004/createuser.html b/Week1-Project/NavneetJuneja004/createuser.html
deleted file mode 100644
index 55fb552..0000000
--- a/Week1-Project/NavneetJuneja004/createuser.html
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
- Create User
-
-
-
-
-
-
-
-
-
-
-
Update Employee's Information
-
-
-
Employee's ID :
-
-
Employee's First Name :
-
-
Employee's Surname :
-
-
Country/Region :
-
-
Date of Birth :
-
-
Gender :
-
- Gender
- Male
- Female
- Other
-
-
Cyber Group Profile :
-
- Cyber Group Profile
- Intern
- Trainee
- Consultant
- Engineer
- Senior Developer
- Human Resource
-
-
Address :
-
-
Update Details
-
Messed up?Have a fresh Start
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/NavneetJuneja004/css/createuser.css b/Week1-Project/NavneetJuneja004/css/createuser.css
deleted file mode 100644
index e715bc3..0000000
--- a/Week1-Project/NavneetJuneja004/css/createuser.css
+++ /dev/null
@@ -1,257 +0,0 @@
-body {
- font-size: 14px;
- margin: 0px;
- font-family: georgia, Segoe Script, Bradley Hand ITC, verdana;
- background:url('http://www.wallpaperup.com/uploads/wallpapers/2012/10/21/20181/cad2441dd3252cf53f12154412286ba0.jpg');
-
- }
-.header {
- margin-bottom: 10px;
- height: 60px;
- padding: 10px;
- font-family: Comic sans ms;
- justify-content: space-between;
- Display: flex;
- background: #114357;
- background: -webkit-linear-gradient(to top, #F29492, #114357);
- background: linear-gradient(to top, #F29492, #114357);
-
- }
-img {
- max-height:100%;
- max-width:100px;
- margin: 0px;
- padding: 0px;
- border-radius: 50%;
- }
-.wel_text {
- margin-top:10px;
- font-size: 120%;
- }
-
-.punch_line {
- font-size: 80%;
- color: #114357;
- padding: 3px;
- }
-.nav_items {
- margin-right: 50px;
- }
-.nav_btn {
- width:80px;
- height:100%;
- color: white;
- padding: 10px 0px;
- background-color: red;
- -webkit-animation-name: example;
- -webkit-animation-duration: 4s;
- animation-name: example;
- animation-duration: 4s;
- }
-
-
- @-webkit-keyframes example {
- from {background-color: red;}
- to {background-color: yellow;}
- }
-
- /* Standard syntax */
- @keyframes example {
- from {background-color: red;}
- to {background-color: yellow;}
- }
-
-
-#nav_bar {
- margin-top: 5px;
- height: 40px;
- padding: 5px;
- border-radius: 0px;
- Display:flex;
- justify-content: flex-end;
- color: #FFFFFF;
- background-color: #CC3333;
-
- }
-#footer {
- padding: 7px;
- bottom: 0;
- height: 15px;
- width: 100%;
- text-align: center;
- border-radius: 100% 100% 0% 0%;
- position: fixed;
- margin-top: -0px;
- color: white;
- background: #1D4350;
- background: -webkit-linear-gradient(to top, #A43931, #403B4A);
- background: linear-gradient(to top, #A43931, #403B4A);
-
- }
-ul a {
- list-style-type: none;
- margin: 0;
- padding: 0;
- overflow: hidden;
- background-color: #1D4350;
- }
-ul {
- list-style-type: none;
- margin: 0;
- padding: 0;}
-li a {
- display: block;
- color: white;
- text-align: center;
- padding: 0px 10px; text-decoration: none;
- display: flex;
- }
-li {
- float: left;
- }
-li a:hover {
- color: black; background-color: white;
- }
-.dropdown {
- position: relative;
- display: inline-block;
- }
-.dropdown-content{
- display: none;
- position: absolute;
- min-width: 160%;
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
- padding: 12px 0px;
- z-index: 1;
- background: #1D4350;
- border-radius: 0px 20px 0px 20px;
- }
-.dropdown:hover .dropdown-content
- {
- display: block;
- }
-.input_box {
- margin: 3px;
- padding: 10px;
- width: 282px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.input_box2 {
- margin: 2px;
- margin-top:3px;
- margin-bottom: 3px;
- padding: 10px;
- width: 125px;
- border-radius: 6px;
- background: #C6FFDD;/*half box*/
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.input_box3 {
- margin: 3px;
- padding: 5px;
- width: 144px;
- height: 43px;
- border-radius: 6px;
- }
-.label_box {
- margin-bottom: 20px;
- margin-top: 20px;
- height: 60px;
- padding: 10px;
- font-family:Bradley Hand ITC;
- justify-content: space-between;
- Display: flex;
- background: #114357;
- background: -webkit-linear-gradient(to right, #A43931, #403B4A);
- background: linear-gradient(to right, #A43931, #403B4A);
- }
-.label_text {
- color: white;
- size: 30px;
- }
-.DOB {
- width: 295px;
- height: 27px;
- margin-top:3px;
- padding: 5px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.gender {
- width: 308px;
- height: 41px;
- margin-top:3px;
- padding: 10px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.designation {
- width: 308px;
- height: 43px;
- margin-top:3px;
- padding: 10px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.address_box {
- margin: 3px;
- padding: 10px;
- width: 282px;
- height: 80px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.bigbox {
- margin-top: 20px;
- font-size:130%;
- font-family: Bradley Hand ITC;
- color: white;
- text-align: center;
- }
-.box_text {
- text-align:center;
- margin-bottom:5px;
- }
-.box_text2 {
- margin-left: 45px;
- margin-bottom: 40px;
- font-size: 17px;
- }
-.update_btn {
- color: grey;
- padding: 8px 16px;
- font-size: 16px;
- margin: 4px 2px;
- border-radius: 5px;
- width: 307px;
- height: 40px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.update_btn:hover{
- cursor: pointer;
- margin-bottom: 45px;
- transition-duration:2s;
- color: black;
- border-radius: 20px;
- width: 307px; height:40px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to right, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to right, #f7797d, #FBD786, #C6FFDD);
- }
-.lower_text {
- color:#114357;
- }
\ No newline at end of file
diff --git a/Week1-Project/NavneetJuneja004/css/homepage.css b/Week1-Project/NavneetJuneja004/css/homepage.css
deleted file mode 100644
index 01e51c3..0000000
--- a/Week1-Project/NavneetJuneja004/css/homepage.css
+++ /dev/null
@@ -1,192 +0,0 @@
-body {
- font-size: 14px;
- margin: 0px;
- font-family: georgia, Segoe Script, Bradley Hand ITC, verdana;
- background:url('http://www.wallpaperup.com/uploads/wallpapers/2012/10/21/20181/cad2441dd3252cf53f12154412286ba0.jpg');
-
-}
- .header {
- margin-bottom: 10px;
- height: 60px;
- padding: 10px;
- font-family: Comic sans ms;
- justify-content: space-between;
- Display: flex;
- background: #114357;
- background: -webkit-linear-gradient(to top, #F29492, #114357);
- background: linear-gradient(to top, #F29492, #114357);
-}
- img{
- max-height:100%;
- max-width:100px;
- margin: 0px;
- padding: 0px;
- border-radius: 50%;
-}
- .wel_text{
- margin-top:10px;
- font-size: 120%;
-}
- .punch_line {
- font-size: 80%;
- color: #114357;
- padding: 3px;
-}
- .nav_items{
- margin-right: 50px;
-}
- .nav_btn{
- width:80px;
- height:100%;
- color: white;
- padding: 10px 0px;
- background-color: red;
- -webkit-animation-name: example;
- -webkit-animation-duration: 4s;
- animation-name: example;
- animation-duration: 4s;
- }
-
-
- @-webkit-keyframes example {
- from {background-color: red;}
- to {background-color: yellow;}
- }
-
- /* Standard syntax */
- @keyframes example {
- from {background-color: red;}
- to {background-color: yellow;}
- }
-
-
- #nav_bar{
- margin-top: 5px;
- height: 40px;
- padding: 5px;
- border-radius: 0px;
- Display:flex;
- justify-content: flex-end;
- color: #FFFFFF;
- background-color: #CC3333;
-
-}
- #footer {
- padding: 7px;
- bottom: 0;
- height: 15px;
- width: 100%;
- text-align: center;
- border-radius: 100% 100% 0% 0%;
- position: fixed;
- margin-top: -0px;
- color: white;
- background: #1D4350;
- background: -webkit-linear-gradient(to top, #A43931, #403B4A);
- background: linear-gradient(to top, #A43931, #403B4A);
-
-}
- ul a{
- list-style-type: none;
- margin: 0;
- padding: 0;
- overflow: hidden;
- background-color: #1D4350;
-}
- ul {
- list-style-type: none;
- margin: 0;
- padding: 0;
-}
- li a{
- display: block;
- color: white;
- text-align: center;
- padding: 0px 10px;
- text-decoration: none;
- display: flex;
-}
- li {
- float: left;
-}
- li a:hover {
- color: black;
- background-color: white;
-}
- .dropdown {
- position: relative;
- display: inline-block;
-}
- .dropdown-content {
- display: none;
- position: absolute;
- min-width: 160%;
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
- padding: 12px 0px;
- z-index: 1;
- background: #1D4350;
- border-radius: 0px 20px 0px 20px;
-}
- .dropdown:hover .dropdown-content {
- display: block;
-}
- .input_box{
- margin: 3px;
- padding: 10px;
- width: 282px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
-}
- .bigbox {
- position:absolute;
- margin-top: 165px;
- border-radius:15px;
- width: 600px;
- height: 100%;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- box-shadow: 10px 5px 5px black;
- text-align:center;
- background: -webkit-linear-gradient(to top, #F29492, #114357);
- background: linear-gradient(to top, #F29492, #114357);
-}
- .timeline_text{
- font-size:130%;
- font-family: Bradley Hand ITC;
- margin: 40px;
- font-weight:bold;
- color: white;
-}
- .login_btn{
- color: grey;
- padding: 8px 16px;
- font-size: 16px;
- margin-top: 20px;
- margin-bottom:20px;
- border-radius: 5px;
- width: 150px;
- height: 40px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
-}
- .login_btn:hover{
- cursor: pointer;
- margin-bottom: 45px;
- transition-duration:2s;
- color: black;
- border-radius: 20px;
- width: 250px;
- height:40px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to right, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to right, #f7797d, #FBD786, #C6FFDD);
-}
- .lower_text{
- color:#114357;
- font-size: 16px;
- margin: 5px;
-}
diff --git a/Week1-Project/NavneetJuneja004/css/index.css b/Week1-Project/NavneetJuneja004/css/index.css
deleted file mode 100644
index b3c9bfd..0000000
--- a/Week1-Project/NavneetJuneja004/css/index.css
+++ /dev/null
@@ -1,274 +0,0 @@
-@import url('https://fonts.googleapis.com/css?family=Nunito');
-@import url('https://fonts.googleapis.com/css?family=Poiret+One');
-
-body, html {
- height: 100%;
- padding: 25px;
- background-repeat: no-repeat;
- background-image: linear-gradient(rgb(12, 97, 33),rgb(104, 145, 162));
- background:url('http://www.wallpaperup.com/uploads/wallpapers/2012/10/21/20181/cad2441dd3252cf53f12154412286ba0.jpg');
-
- position: relative;
- font-size: 14px;
- margin: 0px;
- font-family: georgia, Segoe Script, Bradley Hand ITC, verdana;
-
-
-}
-.video_selector{
- position: fixed;
- right: 0;
- bottom: 0;
- min-width: 100%;
- min-height: 100%;
- width: auto;
- height: auto;
- z-index: -999;
-}
-
-#login-box {
- position: absolute;
- top: 0px;
- left: 50%;
- transform: translateX(-50%);
- width: 350px;
- margin: 0 auto;
- border: 1px solid black;
- box-shadow: 10px 5px 5px black;
- min-height: 250px;
- padding: 20px;
- z-index: 9999;
-}
-#login-box .logo .logo-caption {
- font-family: 'Poiret One', cursive;
- color: white;
- text-align: center;
- margin-bottom: 0px;
-}
-#login-box .logo .tweak {
- color: #ff5252;
-}
-#login-box .controls {
- padding-top: 30px;
-}
-#login-box .controls input {
- border-radius: 0px;
- background: rgb(98, 96, 96);
- border: 0px;
- color: white;
- font-family: 'Nunito', sans-serif;
-}
-#login-box .controls input:focus {
- box-shadow: none;
-}
-#login-box .controls input:first-child {
- border-top-left-radius: 2px;
- border-top-right-radius: 2px;
-}
-#login-box .controls input:last-child {
- border-bottom-left-radius: 2px;
- border-bottom-right-radius: 2px;
-}
-#login-box button.btn-custom {
- border-radius: 2px;
- margin-top: 8px;
- background:#ff5252;
- border-color: rgba(48, 46, 45, 1);
- color: white;
- font-family: 'Nunito', sans-serif;
-}
-#login-box button.btn-custom:hover{
- -webkit-transition: all 500ms ease;
- -moz-transition: all 500ms ease;
- -ms-transition: all 500ms ease;
- -o-transition: all 500ms ease;
- transition: all 500ms ease;
- background: rgba(48, 46, 45, 1);
- border-color: #ff5252;
-}
-#particles-js{
- width: 100%;
- height: 100%;
- background-size: cover;
- background-position: 50% 50%;
- position: fixed;
- top: 0px;
- z-index:1;
-}
-
- .header {
- margin-bottom: 10px;
- height: 60px;
- padding: 10px;
- font-family: Comic sans ms;
- justify-content: space-between;
- Display: flex;
- background: #114357;
- background: -webkit-linear-gradient(to top, #F29492, #114357);
- background: linear-gradient(to top, #F29492, #114357);
-}
- img{
- max-height:100%;
- max-width:100px;
- margin: 0px;
- padding: 0px;
- border-radius: 50%;
-}
- .wel_text{
- margin-top:10px;
- font-size: 120%;
-}
-
- .nav_items{
- margin-right: 50px;
-}
- .nav_btn{
- width:80px;
- height:100%;
- color: white;
- padding: 10px 0px;
-
-
- background-color: red;
- -webkit-animation-name: example;
- -webkit-animation-duration: 4s;
- animation-name: example;
- animation-duration: 4s;
- }
-
-
- @-webkit-keyframes example {
- from {background-color: red;}
- to {background-color: yellow;}
- }
-
- /* Standard syntax */
- @keyframes example {
- from {background-color: red;}
- to {background-color: yellow;}
- }
-
- #nav_bar{
- margin-top: 5px;
- height: 40px;
- padding: 5px;
- border-radius: 0px;
- Display:flex;
- justify-content: flex-end;
- color: #FFFFFF;
-
- background-color: #CC3333;
-
-}
- #footer {
- padding: 7px;
- bottom: 20px;
- height: 25px;
- width: 100%;
- text-align: center;
- border-radius: 100% 100% 0% 0%;
- position: fixed;
- margin-top: -0px;
- color: white;
- background: #1D4350;
- background: -webkit-linear-gradient(to top, #A43931, #403B4A);
- background: linear-gradient(to top, #A43931, #403B4A);
-}
- ul a{
- list-style-type: none;
- margin: 0;
- padding: 0;
- overflow: hidden;
- background-color: #1D4350;
-}
- ul {
- list-style-type: none;
- margin: 0;
- padding: 0;
-}
- li a{
- display: block;
- color: white;
- text-align: center;
- padding: 0px 10px;
- text-decoration: none;
- display: flex;
-}
- li {
- float: left;
-}
- li a:hover {
- color: black;
- background-color: white;
-}
- .dropdown {
- position: relative;
- display: inline-block;
-}
- .dropdown-content {
- display: none;
- position: absolute;
- min-width: 160%;
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
- padding: 12px 0px;
- z-index: 1;
- background: #1D4350;
- border-radius: 0px 20px 0px 20px;
-}
- .dropdown:hover .dropdown-content {
- display: block;
-}
- .input_box{
- margin: 3px;
- padding: 10px;
- width: 282px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
-}
- .bigbox {
- position:absolute;
- top: 50%;
- left: 50%;
- width: 300px;
- height: 350px;
- transform: translate(-50%, -50%);
- text-align:center;
-}
- .logbox {
- font-size:130%;
- font-family: Bradley Hand ITC;
- font-weight:bold;
- color: white;
-}
- .login_btn{
- color: grey;
- padding: 8px 16px;
- font-size: 16px;
- margin-top: 20px;
- margin-bottom:20px;
- border-radius: 5px;
- width: 150px;
- height: 40px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
-}
- .login_btn:hover{
- cursor: pointer;
- margin-bottom: 45px;
- transition-duration:2s;
- color: black;
- border-radius: 20px;
- width: 250px;
- height:40px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to right, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to right, #f7797d, #FBD786, #C6FFDD);
-}
- .lower_text{
- color:#114357;
- font-size: 16px;
- margin: 5px;
-}
diff --git a/Week1-Project/NavneetJuneja004/css/signup.css b/Week1-Project/NavneetJuneja004/css/signup.css
deleted file mode 100644
index 7ab30bc..0000000
--- a/Week1-Project/NavneetJuneja004/css/signup.css
+++ /dev/null
@@ -1,221 +0,0 @@
-body {
- font-size: 14px;
- margin: 0px;
- font-family: georgia, Segoe Script, Bradley Hand ITC, verdana;
- background:url('http://www.wallpaperup.com/uploads/wallpapers/2012/10/21/20181/cad2441dd3252cf53f12154412286ba0.jpg');
-
-}
- .header {
- margin-bottom: 10px;
- height: 60px;
- padding: 10px;
- font-family: Comic sans ms;
- justify-content: space-between;
- Display: flex;
- background: #114357;
- background: -webkit-linear-gradient(to top, #F29492, #114357);
- background: linear-gradient(to top, #F29492, #114357);
-
-}
- img{
- max-height:100%;
- max-width:100px;
- margin: 0px;
- padding: 0px;
- border-radius: 50%;
-}
- .wel_text{
- margin-top:10px;
- font-size: 120%;
-}
-
- .nav_items{
- margin-right: 0px;
-}
- .nav_btn{
- width:80px;
- height:100%;
- color: white;
- padding: 10px 0px;
- background-color: red;
- -webkit-animation-name: example;
- -webkit-animation-duration: 4s;
- animation-name: example;
- animation-duration: 4s;
- }
-
-
- @-webkit-keyframes example {
- from {background-color: red;}
- to {background-color: yellow;}
- }
-
- /* Standard syntax */
- @keyframes example {
- from {background-color: red;}
- to {background-color: yellow;}
- }
-
- #nav_bar{
- margin-top: 5px;
- height: 40px;
- padding: 5px;
- border-radius: 0px;
- Display:flex;
- justify-content: center;
- color: #FFFFFF;
- background-color: #CC3333;
-}
- #footer {
- padding: 7px;
- bottom: 0;
- height: 15px;
- width: 100%;
- text-align: center;
- border-radius: 100% 100% 0% 0%;
- position: fixed;
- margin-top: -0px;
- color: white;
- background: #1D4350;
- background: -webkit-linear-gradient(to top, #A43931, #403B4A);
- background: linear-gradient(to top, #A43931, #403B4A);
-}
- ul a{
- list-style-type: none;
- margin: 0;
- padding: 0;
- overflow: hidden;
- background-color: #1D4350;
-}
- ul {
- list-style-type: none;
- margin: 0;
- padding: 0;
-}
- li a{
- display: block;
- color: white;
- text-align: center;
- padding: 0px 10px;
- text-decoration: none;
- display: flex;
-}
- li {
- float: left;
-}
- li a:hover {
- color: black;
- background-color: white;
-}
- .dropdown {
- position: relative;
- display: inline-block;
-}
- .dropdown-content {
- display: none;
- position: absolute;
- min-width: 160%;
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
- padding: 12px 0px;
- z-index: 1;
- background: #1D4350;
- border-radius: 0px 20px 0px 20px;
-}
- .dropdown:hover .dropdown-content {
- display: block;
-}
- .input_box {
- margin: 3px;
- padding: 10px;
- width: 282px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
-}
- .input_box2 {
- margin: 2px;
- margin-top:3px;
- margin-bottom: 3px;
- padding: 10px;
- width: 125px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
-}
- .input_box3 {
- margin: 3px;
- padding: 5px;
- width: 144px;
- height: 43px;
- border-radius: 6px;
-}
- .bigbox {
- margin-top: 20px;
- font-size:130%;
- font-family: Bradley Hand ITC;
- color: white;
- font-weight:bold;
- text-align: center;
- box-shadow: 10px 5px 5px black;
-}
- .smallbox{
-}
- .gender{
- width: 305px;
- height: 41px;
- margin-top:3px;
- padding: 10px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
-}
- .DOB{
- width: 182px;
- height: 27px;
- margin-top:6px;
- margin-bottom: 0px;
- padding: 5px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
-}
- .signup_btn{
- color: grey;
- padding: 8px 16px;
- font-size: 16px;
- margin: 4px 2px;
- border-radius: 5px;
- width: 295px;
- height: 40px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
-}
- .signup_btn:hover{
- cursor: pointer;
- margin-bottom: 45px;
- transition-duration:2s;
- color: black;
- border-radius: 20px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to right, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to right, #f7797d, #FBD786, #C6FFDD);
-}
- .licence_box{
- margin: 3px;
- padding:5px
-}
- .lower_text{
- color:#114357;
-}
- .nav_text{
- font-size: 20px;
- margin: 10px;
- padding: 3px;
- text-align:center;
- color: white;
-}
diff --git a/Week1-Project/NavneetJuneja004/css/userdetail.css b/Week1-Project/NavneetJuneja004/css/userdetail.css
deleted file mode 100644
index 9ea9427..0000000
--- a/Week1-Project/NavneetJuneja004/css/userdetail.css
+++ /dev/null
@@ -1,256 +0,0 @@
-body {
- font-size: 14px;
- margin: 0px;
- font-family: georgia, Segoe Script, Bradley Hand ITC, verdana;
- background:url('http://www.wallpaperup.com/uploads/wallpapers/2012/10/21/20181/cad2441dd3252cf53f12154412286ba0.jpg');
-
- }
-.header {
- margin-bottom: 10px;
- height: 60px;
- padding: 10px;
- font-family: Comic sans ms;
- justify-content: space-between;
- Display: flex;
- background: #114357;
- background: -webkit-linear-gradient(to top, #F29492, #114357);
- background: linear-gradient(to top, #F29492, #114357);
-}
-
-img {
- max-height:100%;
- max-width:100px;
- margin: 0px;
- padding: 0px;
- border-radius: 50%;
- }
-.wel_text {
- margin-top:10px;
- font-size: 120%;
- }
-
-
-.nav_items {
- margin-right: 50px;
- }
-.nav_btn {
- width:80px;
- height:100%;
- color: white;
- padding: 10px 0px;
- background: #1D4350;
- background: -webkit-linear-gradient(to top, #A43931, #403B4A);
- background: linear-gradient(to top, #A43931, #403B4A)
-
- }
-#nav_bar {
- margin-top: 5px;
- height: 40px;
- padding: 5px;
- border-radius: 0px;
- Display:flex;
- justify-content: flex-end;
- color: #FFFFFF;
-
- background-color: red;
- -webkit-animation-name: example;
- -webkit-animation-duration: 4s;
- animation-name: example;
- animation-duration: 4s;
- }
-
-
- @-webkit-keyframes example {
- from {background-color: red;}
- to {background-color: yellow;}
- }
-
- /* Standard syntax */
- @keyframes example {
- from {background-color: red;}
- to {background-color: yellow;}
- }
-
-
-#footer {
- padding: 7px;
- bottom: 0;
- height: 15px;
- width: 100%;
- text-align: center;
- border-radius: 100% 100% 0% 0%;
- position: fixed;
- margin-top: -0px;
- color: white;
- background: #1D4350;
- background: -webkit-linear-gradient(to top, #A43931, #403B4A);
- background: linear-gradient(to top, #A43931, #403B4A);
-
- }
-ul a {
- list-style-type: none;
- margin: 0;
- padding: 0;
- overflow: hidden;
- background-color: #1D4350;
- }
-ul {
- list-style-type: none;
- margin: 0;
- padding: 0;}
-li a {
- display: block;
- color: white;
- text-align: center;
- padding: 0px 10px; text-decoration: none;
- display: flex;
- }
-li {
- float: left;
- }
-li a:hover {
- color: black; background-color: white;
- }
-.dropdown {
- position: relative;
- display: inline-block;
- }
-.dropdown-content{
- display: none;
- position: absolute;
- min-width: 160%;
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
- padding: 12px 0px;
- z-index: 1;
- background: #1D4350;
- border-radius: 0px 20px 0px 20px;
- }
-.dropdown:hover .dropdown-content
- {
- display: block;
- }
-.input_box {
- margin: 3px;
- padding: 10px;
- width: 282px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.input_box2 {
- margin: 2px;
- margin-top:3px;
- margin-bottom: 3px;
- padding: 10px;
- width: 125px;
- border-radius: 6px;
- background: #C6FFDD;/*half box*/
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.input_box3 {
- margin: 3px;
- padding: 5px;
- width: 144px;
- height: 43px;
- border-radius: 6px;
- }
-.label_box {
- margin-bottom: 20px;
- margin-top: 20px;
- height: 60px;
- padding: 10px;
- font-family:Bradley Hand ITC;
- justify-content: space-between;
- Display: flex;
- background: #114357;
- background: -webkit-linear-gradient(to right, #A43931, #403B4A);
- background: linear-gradient(to right, #A43931, #403B4A);
- }
-.label_text {
- color: white;
- size: 30px;
- }
-.DOB {
- width: 295px;
- height: 27px;
- margin-top:3px;
- padding: 5px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.gender {
- width: 308px;
- height: 41px;
- margin-top:3px;
- padding: 10px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.designation {
- width: 308px;
- height: 43px;
- margin-top:3px;
- padding: 10px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.address_box {
- margin: 3px;
- padding: 10px;
- width: 282px;
- height: 80px;
- border-radius: 6px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.bigbox {
- margin-top: 20px;
- font-size:130%;
- font-family: Bradley Hand ITC;
- color: white;
- text-align: center;
- }
-.box_text {
- text-align:center;
- margin-bottom:5px;
- }
-.box_text2 {
- margin-left: 45px;
- margin-bottom: 40px;
- font-size: 17px;
- }
-.update_btn {
- color: grey;
- padding: 8px 16px;
- font-size: 16px;
- margin: 4px 2px;
- border-radius: 5px;
- width: 307px;
- height: 40px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);
- }
-.update_btn:hover{
- cursor: pointer;
- margin-bottom: 45px;
- transition-duration:2s;
- color: black;
- border-radius: 20px;
- width: 307px; height:40px;
- background: #C6FFDD;
- background: -webkit-linear-gradient(to right, #f7797d, #FBD786, #C6FFDD);
- background: linear-gradient(to right, #f7797d, #FBD786, #C6FFDD);
- }
-.lower_text {
- color:#114357;
- }
\ No newline at end of file
diff --git a/Week1-Project/NavneetJuneja004/css/userlist.css b/Week1-Project/NavneetJuneja004/css/userlist.css
deleted file mode 100644
index 14c31ea..0000000
--- a/Week1-Project/NavneetJuneja004/css/userlist.css
+++ /dev/null
@@ -1,178 +0,0 @@
-body {
- font-size: 14px;
- margin: 0px;
- font-family: georgia, Segoe Script, Bradley Hand ITC, verdana;
- background:url('http://www.wallpaperup.com/uploads/wallpapers/2012/10/21/20181/cad2441dd3252cf53f12154412286ba0.jpg');
-
-}
- .header {
- margin-bottom: 10px;
- height: 60px;
- padding: 10px;
- font-family: Comic sans ms;
- justify-content: space-between;
- Display: flex;
- background: #114357;
- background: -webkit-linear-gradient(to top, #F29492, #114357);
- background: linear-gradient(to top, #F29492, #114357);
-}
- img{
- max-height:100%;
- max-width:100px;
- margin: 0px;
- padding: 0px;
- border-radius: 50%;
-}
- .wel_text{
- margin-top:10px;
- font-size: 120%;
-}
-
- .nav_items{
- margin-right: 50px;
-}
- .nav_btn{
- width:80px;
- height:100%;
- color: white;
- padding: 10px 0px;
- background: #1D4350;
- background: -webkit-linear-gradient(to top, #A43931, #403B4A);
- background: linear-gradient(to top, #A43931, #403B4A)
-
-}
- #nav_bar{
- margin-top: 5px;
- height: 40px;
- padding: 5px;
- border-radius: 0px;
- Display:flex;
- justify-content: flex-end;
- color: #FFFFFF;
- background-color: red;
- -webkit-animation-name: example;
- -webkit-animation-duration: 4s;
- animation-name: example;
- animation-duration: 4s;
- }
-
-
- @-webkit-keyframes example {
- from {background-color: red;}
- to {background-color: yellow;}
- }
-
- /* Standard syntax */
- @keyframes example {
- from {background-color: red;}
- to {background-color: yellow;}
- }
-
-
- #footer {
- padding: 7px;
- bottom: 0;
- height: 15px;
- width: 100%;
- text-align: center;
- border-radius: 100% 100% 0% 0%;
- position: fixed;
- margin-top: -0px;
- color: white;
- background: #1D4350;
- background: -webkit-linear-gradient(to top, #A43931, #403B4A);
- background: linear-gradient(to top, #A43931, #403B4A);
-
-}
- ul a{
- list-style-type: none;
- margin: 0;
- padding: 0;
- overflow: hidden;
- background-color: #1D4350;
-}
- ul {
- list-style-type: none;
- margin: 0;
- padding: 0;
-}
- li a{
- display: block;
- color: white;
- text-align: center;
- padding: 0px 10px;
- text-decoration: none;
- display: flex;
-}
- li {
- float: left;
-}
- li a:hover {
- color: black;
- background-color: white;
-}
- .dropdown {
- position: relative;
- display: inline-block;
-}
- .dropdown-content {
- display: none;
- position: absolute;
- min-width: 160%;
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
- padding: 12px 0px;
- z-index: 1;
- background: #1D4350;
- border-radius: 0px 20px 0px 20px;
-}
- .dropdown:hover .dropdown-content {
- display: block;
-}
- .bigbox {
- align-content: center;
- width: 900px;
- box-shadow: 10px 5px 5px black;
-}
- .logbox {
- font-size:130%;
- font-family: Bradley Hand ITC;
- font-weight:bold;
- color: white;
- box-shadow: 10px 5px 5px black;
-}
- .list_table{
-}
- table{
- padding: 10px;
- margin: 10px;
- margin-top: 15px;
- color: white;
-}
- th{
- padding: 10px;
- margin: 0px;
- color: black;
- border: #F29492;
- background: -webkit-linear-gradient(to top, #F29492, #114357);
- background: linear-gradient(to top, #F29492, #114357);
-}
- td{
- padding: 10px;
- margin: 0px;
- color: white;
- border: 2px #403B4A;
-}
- tr{
- padding: 7px;
- margin: 0px;
- color: white;
- border: 2px #403B4A;
- background-color: #403B4A;
-}
- tr:nth-of-type(2n+1){
- padding: 7px;
- margin: 0px;
- color:white;
- border: 2px solid black;
- background-color: #A43931;
-}
diff --git a/Week1-Project/NavneetJuneja004/homepage.html b/Week1-Project/NavneetJuneja004/homepage.html
deleted file mode 100644
index 0d8cb73..0000000
--- a/Week1-Project/NavneetJuneja004/homepage.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
- Homepage
-
-
-
-
-
-
-
-
-
-
-
This is Your Timeline
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/NavneetJuneja004/images/cyg_logo.jpg b/Week1-Project/NavneetJuneja004/images/cyg_logo.jpg
deleted file mode 100644
index 8022e99..0000000
Binary files a/Week1-Project/NavneetJuneja004/images/cyg_logo.jpg and /dev/null differ
diff --git a/Week1-Project/NavneetJuneja004/index.html b/Week1-Project/NavneetJuneja004/index.html
deleted file mode 100644
index 5cb5388..0000000
--- a/Week1-Project/NavneetJuneja004/index.html
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
- Cyber Group Login
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Enter your login credentials
-
-
-
-
-
L ogin
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -->
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/NavneetJuneja004/login.js b/Week1-Project/NavneetJuneja004/login.js
deleted file mode 100644
index 39c652c..0000000
--- a/Week1-Project/NavneetJuneja004/login.js
+++ /dev/null
@@ -1,125 +0,0 @@
-$.getScript("https://cdnjs.cloudflare.com/ajax/libs/particles.js/2.0.0/particles.min.js", function(){
- particlesJS('particles-js',
- {
- "particles": {
- "number": {
- "value": 80,
- "density": {
- "enable": true,
- "value_area": 800
- }
- },
- "color": {
- "value": "#ffffff"
- },
- "shape": {
- "type": "circle",
- "stroke": {
- "width": 0,
- "color": "#000000"
- },
- "polygon": {
- "nb_sides": 5
- },
- "image": {
- "width": 100,
- "height": 100
- }
- },
- "opacity": {
- "value": 0.5,
- "random": false,
- "anim": {
- "enable": false,
- "speed": 1,
- "opacity_min": 0.1,
- "sync": false
- }
- },
- "size": {
- "value": 5,
- "random": true,
- "anim": {
- "enable": false,
- "speed": 40,
- "size_min": 0.1,
- "sync": false
- }
- },
- "line_linked": {
- "enable": true,
- "distance": 150,
- "color": "#ffffff",
- "opacity": 0.4,
- "width": 1
- },
- "move": {
- "enable": true,
- "speed": 6,
- "direction": "none",
- "random": false,
- "straight": false,
- "out_mode": "out",
- "attract": {
- "enable": false,
- "rotateX": 600,
- "rotateY": 1200
- }
- }
- },
- "interactivity": {
- "detect_on": "canvas",
- "events": {
- "onhover": {
- "enable": true,
- "mode": "repulse"
- },
- "onclick": {
- "enable": true,
- "mode": "push"
- },
- "resize": true
- },
- "modes": {
- "grab": {
- "distance": 400,
- "line_linked": {
- "opacity": 1
- }
- },
- "bubble": {
- "distance": 400,
- "size": 40,
- "duration": 2,
- "opacity": 8,
- "speed": 3
- },
- "repulse": {
- "distance": 200
- },
- "push": {
- "particles_nb": 4
- },
- "remove": {
- "particles_nb": 2
- }
- }
- },
- "retina_detect": true,
- "config_demo": {
- "hide_card": false,
- "background_color": "#b61924",
- "background_image": "",
- "background_position": "100% 100%",
- "background_repeat": "no-repeat",
- "background_size": "cover"
- }
- }
- );
-
-});
-
-
-
-
-
diff --git a/Week1-Project/NavneetJuneja004/signup.html b/Week1-Project/NavneetJuneja004/signup.html
deleted file mode 100644
index 4c7ca23..0000000
--- a/Week1-Project/NavneetJuneja004/signup.html
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
- SignUp page
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/NavneetJuneja004/userdetail.html b/Week1-Project/NavneetJuneja004/userdetail.html
deleted file mode 100644
index e0b208e..0000000
--- a/Week1-Project/NavneetJuneja004/userdetail.html
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
- Create User
-
-
-
-
-
-
-
-
-
-
-
-
-
Update Employee's Information
-
-
-
Employee's ID :
-
-
Employee's First Name :
-
-
Employee's Surname :
-
-
-
Date of Birth :
-
-
Gender :
-
- Gender
- Male
- Female
- Other
-
-
Cyber Group Profile :
-
- Cyber Group Profile
- Intern
- Trainee
- Consultant
- Engineer
- Senior Developer
- Human Resource
-
-
Address :
-
-
Update Details
-
Messed up?Have a fresh Start
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/NavneetJuneja004/userlist.html b/Week1-Project/NavneetJuneja004/userlist.html
deleted file mode 100644
index cbb1cdf..0000000
--- a/Week1-Project/NavneetJuneja004/userlist.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
- Employee List
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Employee Id
- First Name
- Last Name
- Employee's Email
- Phone Number
- Date of Birth
- Designation
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Week1-Project/Nikhil Tayal005/CreateTable.html b/Week1-Project/Nikhil Tayal005/CreateTable.html
deleted file mode 100644
index 2652479..0000000
--- a/Week1-Project/Nikhil Tayal005/CreateTable.html
+++ /dev/null
@@ -1,219 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Bootstrap Theme
-
-
-
-
-
-
-
-
-
-
-
Employee Data
-
-
Employee Information
-
-
-
- ID Type:
-
-
-
- Intern
- Employee
- Trainer
- Manager
-
-
-
-
-
-
- Martial Status:
-
-
-
- Single
- Married
- Commited
- Its Complicated
-
-
-
-
-
Personal Information
-
-
-
-
-
-
- Contact Number:
-
-
-
-
-
-
-
- Home Contact Number:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Nikhil Tayal005/SignUp.html b/Week1-Project/Nikhil Tayal005/SignUp.html
deleted file mode 100644
index 564da23..0000000
--- a/Week1-Project/Nikhil Tayal005/SignUp.html
+++ /dev/null
@@ -1,138 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Bootstrap Theme
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Register Now
-
-
-
-
-
-
-
- submit
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Nikhil Tayal005/TableEmployee.html b/Week1-Project/Nikhil Tayal005/TableEmployee.html
deleted file mode 100644
index 456b544..0000000
--- a/Week1-Project/Nikhil Tayal005/TableEmployee.html
+++ /dev/null
@@ -1,256 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Bootstrap Theme
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Firstname
- Lastname
- Intern ID
- Contact Number
- Email
-
-
-
-
- Nikhil
- tayal
- INT005
- 9873327914
- nikhiltayal9211@gmail.com
-
-
- Deepak
- Pahuja
- INT004
- 985632145
- deepakpahuja@gnail.com
-
-
- Navneet
- Juneja
- INT006
- 879563215
- navneetjunnu@gmail.com
-
-
- Nikhil
- tayal
- INT005
- 9873327914
- nikhiltayal9211@gmail.com
-
-
- Deepak
- Pahuja
- INT004
- 985632145
- deepakpahuja@gnail.com
-
-
- Navneet
- Juneja
- INT006
- 879563215
- navneetjunnu@gmail.com
-
-
- Nikhil
- tayal
- INT005
- 9873327914
- nikhiltayal9211@gmail.com
-
-
- Deepak
- Pahuja
- INT004
- 985632145
- deepakpahuja@gnail.com
-
-
- Navneet
- Juneja
- INT006
- 879563215
- navneetjunnu@gmail.com
-
-
- Nikhil
- tayal
- INT005
- 9873327914
- nikhiltayal9211@gmail.com
-
-
- Deepak
- Pahuja
- INT004
- 985632145
- deepakpahuja@gnail.com
-
-
- Navneet
- Juneja
- INT006
- 879563215
- navneetjunnu@gmail.com
-
-
- Nikhil
- tayal
- INT005
- 9873327914
- nikhiltayal9211@gmail.com
-
-
- Deepak
- Pahuja
- INT004
- 985632145
- deepakpahuja@gnail.com
-
-
- Navneet
- Juneja
- INT006
- 879563215
- navneetjunnu@gmail.com
-
-
- Nikhil
- tayal
- INT005
- 9873327914
- nikhiltayal9211@gmail.com
-
-
- Deepak
- Pahuja
- INT004
- 985632145
- deepakpahuja@gnail.com
-
-
- Navneet
- Juneja
- INT006
- 879563215
- navneetjunnu@gmail.com
-
-
- Nikhil
- tayal
- INT005
- 9873327914
- nikhiltayal9211@gmail.com
-
-
- Deepak
- Pahuja
- INT004
- 985632145
- deepakpahuja@gnail.com
-
-
- Navneet
- Juneja
- INT006
- 879563215
- navneetjunnu@gmail.com
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Nikhil Tayal005/css/LoginPage.css b/Week1-Project/Nikhil Tayal005/css/LoginPage.css
deleted file mode 100644
index 0755f3c..0000000
--- a/Week1-Project/Nikhil Tayal005/css/LoginPage.css
+++ /dev/null
@@ -1,106 +0,0 @@
-body{
- color: beige;
- background-color: darkgrey;
-}
-.navbar-brand img{
- width: 60%
-}
-.nav-link {
- font-size: 160%;
- margin: 6px
-}
-.navbar{
- background-color: #333;
-}
-a.navbar-brand-1{
- font-size: 40px;
-}
-#home-section .home-inner
-{
- padding-top: 150px;
-}
-h1.display-4{
- padding-left: 3%;
-}
-#home-section{
- background-image: url(../img/nesa-by-makers-736784-unsplash.jpg);
- background-repeat: no-repeat;
- background-size: cover;
- width: 100%;
- min-height: 700px;
-}
-.dark-overlay{
- background: rgba(0,0,0,0.8);
- min-height: 700px;
-}
-.card{
- opacity: 0.7;
- box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
- width: 140%
-
-}
-.tablecontainer{
- padding-top: 150px;
- font-size: 150%
-
-}
-a.signuplink{
- float: right;
- font-size: 150%;
- margin-top: 10%;
- color: aliceblue;
-}
-a.signuplink:hover{
- float: right;
- font-size: 150%;
- margin-top: 10%;
- color: #005ffe;
-}
-input[type="submit"]{
- border-radius: 20px;
-}
-.footer-part {
- text-align: center;
- color: black;
-}
-.createtable{
- padding-top: 200px;
-}
-h2.display-4{
- text-align: right;
- color: aqua
-}
-.hrline{
- border: none;
- border-bottom: 2px solid aqua;
-}
-label{
- display: inline;
-}
-.signup-box{
- padding-top: 150px;
- width: 60%;
- min-height: 700px;
- margin: 0px auto;
-}
-button.sgn{
- float:right;
- font-size: 200%;
- width: 40%;
-}
-select{
- display: inline;
-}
-.crt{
- margin: 5% 50% 10% 50%;
- width: 20%;
-}
-.footer-part h2 {
- border-bottom: solid black 2px;
-}
-@media only screen and (min-width: 991px) {
- a.navbar-brand-1 {
- display: none;
- font-size: 20000px;
- }
-}
\ No newline at end of file
diff --git a/Week1-Project/Nikhil Tayal005/css/style.css b/Week1-Project/Nikhil Tayal005/css/style.css
deleted file mode 100644
index 0b302e6..0000000
--- a/Week1-Project/Nikhil Tayal005/css/style.css
+++ /dev/null
@@ -1,69 +0,0 @@
-body{
- color: beige;
- background-color: darkgrey;
-}
-.navbar-brand img{
- width: 60%
-}
-.nav-link {
- font-size: 160%;
- margin: 6px
-}
-.navbar{
- background-color: #333;
-}
-a.navbar-brand-1{
- font-size: 40px;
-}
-#home-section .home-inner
-{
- padding-top: 150px;
-}
-h1.display-4{
- padding-left: 3%;
-}
-#home-section{
- background-image: url(../img/nesa-by-makers-736784-unsplash.jpg);
- background-repeat: no-repeat;
- background-size: cover;
- width: 100%;
- min-height: 700px;
-}
-.dark-overlay{
- background: rgba(0,0,0,0.8);
- min-height: 700px;
-}
-.card{
- opacity: 0.7;
- box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
- width: 140%
-
-}
-a.signuplink{
- float: right;
- font-size: 150%;
- margin-top: 10%;
- color: aliceblue;
-}
-a.signuplink:hover{
- float: right;
- font-size: 150%;
- margin-top: 10%;
- color: #005ffe;
-}
-input[type="submit"]{
- border-radius: 20px;
-}
-.footer-part {
- text-align: center;
- color: black;
-}
-.footer-part h2 {
- border-bottom: solid black 2px;
-}
-@media only screen and (min-width: 991px) {
- a.navbar-brand-1 {
- display: none;
- font-size: 20000px;
- }
-}
\ No newline at end of file
diff --git a/Week1-Project/Nikhil Tayal005/img/logo.png b/Week1-Project/Nikhil Tayal005/img/logo.png
deleted file mode 100644
index 7cfc009..0000000
Binary files a/Week1-Project/Nikhil Tayal005/img/logo.png and /dev/null differ
diff --git a/Week1-Project/Nikhil Tayal005/img/nesa-by-makers-736784-unsplash.jpg b/Week1-Project/Nikhil Tayal005/img/nesa-by-makers-736784-unsplash.jpg
deleted file mode 100644
index 665c194..0000000
Binary files a/Week1-Project/Nikhil Tayal005/img/nesa-by-makers-736784-unsplash.jpg and /dev/null differ
diff --git a/Week1-Project/Nikhil Tayal005/index.html b/Week1-Project/Nikhil Tayal005/index.html
deleted file mode 100644
index fa2ea05..0000000
--- a/Week1-Project/Nikhil Tayal005/index.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Bootstrap Theme
-
-
-
-
-
-
-
-
-
-
-
-
-
Why
- Choose Us ?
-
-
-
-
-
-
-
Reliable & Scalable Technology
- for Digital Transformation
-
-
-
-
-
-
-
-
-
Delivered On-Time & Hassle-Free
-
-
-
-
-
-
-
-
-
Smart Technology Solutions for High-Growth Businesses
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/PallaviVerma026/Log.html b/Week1-Project/PallaviVerma026/Log.html
deleted file mode 100644
index 51c636f..0000000
--- a/Week1-Project/PallaviVerma026/Log.html
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
- login page
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Log In
-
-
-
- Email
-
-
-
-
-
-
- Password
-
-
-
-
-
Cancel
-
Log In
-
-
-
Forgot password?
-
-
-
-
-
-
-
-
-
diff --git a/Week1-Project/PallaviVerma026/bg.png b/Week1-Project/PallaviVerma026/bg.png
deleted file mode 100644
index 7a2549d..0000000
Binary files a/Week1-Project/PallaviVerma026/bg.png and /dev/null differ
diff --git a/Week1-Project/PallaviVerma026/cg.png b/Week1-Project/PallaviVerma026/cg.png
deleted file mode 100644
index 071882e..0000000
Binary files a/Week1-Project/PallaviVerma026/cg.png and /dev/null differ
diff --git a/Week1-Project/PallaviVerma026/create.css b/Week1-Project/PallaviVerma026/create.css
deleted file mode 100644
index e976fde..0000000
--- a/Week1-Project/PallaviVerma026/create.css
+++ /dev/null
@@ -1,134 +0,0 @@
-body
-{
- font-family: sans-serif;
-}
-
-* {
- box-sizing: border-box;
- padding: 0;
- margin:0;
- }
-
-
-.container
-{
- padding: 16px;
- width:50%;
- position: absolute;
- top:140px;
- left:25%;
- right:25%;
- border: solid black 2px;
-
-}
-
-#one{
- font-family: sans-serif;
- font-size: x-large;
- position: absolute;
- right: 90px;
- color: white;
- top: 90px;
-}
-#two{
- font-family: sans-serif;
- font-size:x-large;
- position: absolute;
- right: 30px;
- color:white;
- top: 90px;
-}
-
-
-input[type=text], input[type=password] ,input[type=number],input[type=date]
-{
- width: 100%;
- padding: 15px;
- margin: 5px 0 22px 0;
- display: inline-block;
- border: none;
- background-color: antiquewhite;
-}
-
-input[type=text]:focus, input[type=password],input[type=number],input[type=date]:focus
-{
- outline: none;
- background-color: peachpuff;
-}
-
-.img
-{
- background: black;
-}
-
-.create
-{
- padding: 16px;
- position:relative;;
- left: 55%;
- margin: 8px;
- width: 20%;
- text-align: center;
- font-size: 16px;
- transition-duration: 0.4s;
- box-shadow: 20px;
- cursor: pointer;
-
-
-}
-
-
-.cancel
-{
- position: relative;
- left:55%;
- padding: 16px;
- margin: 8px;
- cursor: pointer;
- width: 20%;
- box-shadow: 20px;
- text-align: center;
- font-size: 16px;
- transition-duration: 0.4s;
-
-
- }
-
-
-.cancel:hover
-{
- background-color: red;
- color: white;
-}
-
-.create:hover
-{
- background-color: green;
- color: white;
-}
-
-@media screen and (max-width :768px)
-{
- .container{
- height:auto;
- }
-
-}
-
-p{
- height: 40px;
-
- background-color: #468686;
-
-}
-
-footer
-{
-
- margin-top:90%;
- width: 100%;
- background-color: black;
- color: white;
- text-align: center;
-
-}
\ No newline at end of file
diff --git a/Week1-Project/PallaviVerma026/create.html b/Week1-Project/PallaviVerma026/create.html
deleted file mode 100644
index 29d8415..0000000
--- a/Week1-Project/PallaviVerma026/create.html
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
- create employee page
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Details
- List
-
-
-
-
- Create Employee
-
- Employee ID
-
-
- First Name
-
-
- Last Name
-
-
- Date of Birth
-
-
- Gender
-
-
- Blood Group
-
-
- Contact No.
-
-
- Highest Qualifictation
-
-
- Work Experience
-
-
- Cancel
- Create
-
-
-
- Copyright All Rights Reserved © 2017
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/PallaviVerma026/index.css b/Week1-Project/PallaviVerma026/index.css
deleted file mode 100644
index a01b25d..0000000
--- a/Week1-Project/PallaviVerma026/index.css
+++ /dev/null
@@ -1,34 +0,0 @@
-
\ No newline at end of file
diff --git a/Week1-Project/PallaviVerma026/index.html b/Week1-Project/PallaviVerma026/index.html
deleted file mode 100644
index 0ccc274..0000000
--- a/Week1-Project/PallaviVerma026/index.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
- Index File
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/PallaviVerma026/list.css b/Week1-Project/PallaviVerma026/list.css
deleted file mode 100644
index 5804a64..0000000
--- a/Week1-Project/PallaviVerma026/list.css
+++ /dev/null
@@ -1,81 +0,0 @@
-table
-{
- position: absolute;
- left: 25%;
- right:25%;
- top:30%;
- text-align: center;
-
-}
-
-th
-{
- background-color: cadetblue;
- padding:16px;
-}
-
-
-td
-{
- background-color: lightsteelblue;
- padding:16px;
-}
-
-.img
-{
- background-color: black;
-}
-
-@media screen and (max-width :768px)
-{
- .container{
- height:auto;
- }
-}
-
-.footer
-{
- position: fixed;
-
- left: 0;
- bottom: 0;
- width: 100%;
- background-color: black;
- color: white;
- text-align: center;
-
-}
-* {
- box-sizing: border-box;
-
- padding: 0;
- margin:0;
- }
-
-
-#one
-{
- font-family: sans-serif;
- font-size: large;
- position: absolute;
- right: 10px;
- color: white;
- top: 90px;
-}
-
-#two
-{
- font-family: sans-serif;
- font-size: large;
- position: absolute;
- right: 90px;
- color:white;
- top: 90px;
-}
-
-p{
- height: 30px;
-
- background-color: #468686;
-
-}
\ No newline at end of file
diff --git a/Week1-Project/PallaviVerma026/list.html b/Week1-Project/PallaviVerma026/list.html
deleted file mode 100644
index f451b09..0000000
--- a/Week1-Project/PallaviVerma026/list.html
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
- LIST page
-
-
-
-
-
-
-
-
-
-
-
- Details
-
- Create New Employee?
-
-
-
-
-
- CYG_ID
- First Name
- Last Name
- Designation
- DOB
- Gender
- Phone No.
-
-
-
- 1
- Pallavi
- Verma
- Intern
- 14-06-1997
- Female
- 983471283
-
-
-
- 2
- Akshita
- Bhardwaj
- Intern
- 14-06-1997
- Female
- 903471283
-
-
-
- 3
- Prachi
- Joshi
- Intern
- 14-06-1997
- Female
- 983471283
-
-
-
- 4
- Anita
- Sharma
- Intern
- 14-06-1997
- Female
- 983471283
-
-
-
-
-
-
-
-
diff --git a/Week1-Project/PallaviVerma026/log.css b/Week1-Project/PallaviVerma026/log.css
deleted file mode 100644
index 2629a83..0000000
--- a/Week1-Project/PallaviVerma026/log.css
+++ /dev/null
@@ -1,117 +0,0 @@
-body
-{
- font-family: sans-serif;
-}
-
-* {
- box-sizing: border-box;
- padding: 0;
- margin: 0;
-
- }
-
-.footer
-{
- position: fixed;
-
- left: 0;
- bottom: 0;
- width: 100%;
- background-color: black;
- color: white;
- text-align: center;
-
-}
-
-.container {
- padding: 16px;
- width:50%;
- height: 66%;
- position: absolute;
- top:120px;
- left:25%;
- right:25%;
- border: solid black 2px;
-
-}
-
-
-input[type=text], input[type=password] {
- width: 100%;
- padding: 16px;
- margin: 5px 0 22px 0;
- display: inline-block;
- border: none;
- background-color: antiquewhite;
-}
-
-input[type=text]:focus, input[type=password]:focus {
- background-color: peachpuff;
-
-}
-
-
-
-a {
- position: absolute;
- left:68%;
- display: block;
- color: blue;
-}
-
-
-.img
-{ background: black;
-
- }
-.login {
-
- padding: 16px;
- margin: 8px;
- left:64%;
- width: 20%;
- text-align: center;
- display: inline-block;
- font-size: 16px;
- transition-duration: 0.4s;
- box-shadow: 20px;
- cursor: pointer;
-
-
-}
-
-
-.cancel
-{
- padding: 16px;
- margin: 8px;
- left:40%;
- cursor: pointer;
- width: 20%;
- box-shadow: 20px;
- text-align: center;
- display: inline-block;
- font-size: 16px;
- transition-duration: 0.4s;
-
- }
-
-
-.cancel:hover
-{
- background-color: red;
- color: white;
-}
-
-.login:hover
-{
- background-color: green;
- color: white;
-}
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/PallaviVerma026/logo.png b/Week1-Project/PallaviVerma026/logo.png
deleted file mode 100644
index 1d1dd57..0000000
Binary files a/Week1-Project/PallaviVerma026/logo.png and /dev/null differ
diff --git a/Week1-Project/PallaviVerma026/ret.css b/Week1-Project/PallaviVerma026/ret.css
deleted file mode 100644
index d121ab9..0000000
--- a/Week1-Project/PallaviVerma026/ret.css
+++ /dev/null
@@ -1,100 +0,0 @@
-.tx
-{
- position:absolute;
- left: 25%;
- right:25%;
- top:35%;
- background-color: aliceblue;
- border: 1;
-}
-
-*{
- padding:0;
- margin: 0;
-}
-
-table
-{
- border-radius: 20px;
-}
-
-
-th
-{
- background-color: bisque;
- padding:16px;
-}
-
-td
-{
- background-color: cornsilk;
- padding:16px;
-}
-
-summary
-{
- font-size: 20px;
- padding: 16px;
-}
-
-.img
-{ background: black;
-
- }
-
-
-h1
-{
- position: absolute;
- top:20%;
- left:25%;
- padding: 20px;
-
-}
-
-p{
- height: 30px;
- background-color: peach;
- background-color: #468686;
-
-}
-@media screen and (max-width :768px)
-{
- .container{
- height:auto;
- }
- .img
- {
- height:auto;
- }
-}
-
-#one{
- font-family: sans-serif;
- font-size: large;
- position: absolute;
- right: 20px;
- top: 90px;
- color: white;
-}
-#two{
- font-family: sans-serif;
- font-size: large;
- position: absolute;
- right: 97px;
- top: 90px;
- color: white;
-}
-
-.footer
-{
- position: fixed;
-
- left: 0;
- bottom: 0;
- width: 100%;
- background-color: black;
- color: white;
- text-align: center;
-
-}
\ No newline at end of file
diff --git a/Week1-Project/PallaviVerma026/ret.html b/Week1-Project/PallaviVerma026/ret.html
deleted file mode 100644
index 5965ec7..0000000
--- a/Week1-Project/PallaviVerma026/ret.html
+++ /dev/null
@@ -1,132 +0,0 @@
-
-
-
- retieval page
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Log Out
- List
-
-
-Retrieve Details
-
-
-
- Pallavi Verma
-
-
- CYG_ID
- First Name
- Last Name
- Designation
- DOB
- Gender
- Phone No.
-
-
- 1
- Pallavi
- Verma
- Intern
- 14-06-1997
- F
- 983471283
-
-
-
-
-
-
-
- Akshita Bhardwaj
-
-
- CYG_ID
- First Name
- Last Name
- Designation
- DOB
- Gender
- Phone No.
-
-
- 2
- Akshita
- Bhardwaj
- Manager
- 10-09-1997
- F
- 9283471283
-
-
-
-
-
-
- Prachi Joshi
-
-
-
- CYG_ID
- First Name
- Last Name
- Designation
- DOB
- Gender
- Phone No.
-
-
- 3
- Prachi
- Joshi
- Intern
- 14-06-1997
- F
- 973471283
-
-
-
-
-
- Anita Sharma
-
-
-
- CYG_ID
- First Name
- Last Name
- Designation
- DOB
- Gender
- Phone No.
-
-
- 4
- Bhavya
- Gupta
- Intern
- 15-01-1997
- F
- 903471283
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/PallaviVerma026/signup.css b/Week1-Project/PallaviVerma026/signup.css
deleted file mode 100644
index c19099f..0000000
--- a/Week1-Project/PallaviVerma026/signup.css
+++ /dev/null
@@ -1,128 +0,0 @@
-body
-{
- font-family: sans-serif;
-}
-
-*
-{
- box-sizing: border-box;
- padding: 0;
- margin:0;
- }
-
-
-p
-{
- height: 30px;
- background-color: #468686;
-
-}
-
-.container
-{
- padding: 16px;
- width:50%;
- position: absolute;
- top:120px;
- left:25%;
- right:25%;
- border: solid black 2px;
-
-}
-
-
-input[type=text], input[type=password] ,input[type=number],input[type=date]
-{
- width: 100%;
- padding: 15px;
- margin: 5px 0 22px 0;
- display: inline-block;
- border: none;
- background-color: antiquewhite;
-}
-
-input[type=text]:focus, input[type=password],input[type=number],input[type=date]:focus
-{
- outline: none;
- background-color: peachpuff;
-}
-
-.img
-{
- background: black;
-}
-
-.signup
-{
- padding: 16px;
- position:relative;;
- left: 55%;
- margin: 8px;
- width: 20%;
- text-align: center;
- font-size: 16px;
- transition-duration: 0.4s;
- box-shadow: 20px;
- cursor: pointer;
-
-
-
-}
-
-
-.cancel
-{
- position: relative;
- left:55%;
- padding: 16px;
- margin: 8px;
- cursor: pointer;
- width: 20%;
- box-shadow: 20px;
- text-align: center;
- font-size: 16px;
- transition-duration: 0.4s;
-
-
- }
-
-
-
-#one{
- font-family: sans-serif;
- font-size: large;
- position: absolute;
- right: 20px;
- top: 90px;
- color: white;
-}
-.cancel:hover
-{
- background-color: red;
- color: white;
-}
-
-.signup:hover
-{
- background-color: green;
- color: white;
-}
-
-@media screen and (max-width :768px)
-{
- .container{
- height:auto;
- }
-}
-
-
-footer
-{
-
- margin-top:90%;
- width: 100%;
- background-color: black;
- color: white;
- text-align: center;
-
-}
\ No newline at end of file
diff --git a/Week1-Project/PallaviVerma026/signup.html b/Week1-Project/PallaviVerma026/signup.html
deleted file mode 100644
index 79d16cf..0000000
--- a/Week1-Project/PallaviVerma026/signup.html
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
- signup page
-
-
-
-
-
-
-
-
-
-
-
-
- Log In
-
-
-
-
-
-
-
-
-
- Copyright All Rights Reserved © 2017
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/Note to Reviewer.txt b/Week1-Project/RAVISHARMA022/Note to Reviewer.txt
deleted file mode 100644
index b162bae..0000000
--- a/Week1-Project/RAVISHARMA022/Note to Reviewer.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-Files to review for week-1 project :
-
-Index.html: Login page
-Signup.html.html: Signup page
-Create User.html: To add a new user to database.
-show user.html after clicking "Click to view Button user can see and edit the Details of the clicked on user"
-my profile.html : Logged user can see his details.
-Homepage.html: Welcome page after successful Login.
-User List.html: to see the list of all the users.
-
-
-The corresponding CSS and javascript files to these HTML files are in the CSS and js directory with their
-relative paths given already as per the guidelines.
-Database Schema and queries are in the SQl Directory.
-Images Used for designing are in the Images Directory.
-
diff --git a/Week1-Project/RAVISHARMA022/SQL/Database Schema for LoginSystem.JPG b/Week1-Project/RAVISHARMA022/SQL/Database Schema for LoginSystem.JPG
deleted file mode 100644
index ff7ea5f..0000000
Binary files a/Week1-Project/RAVISHARMA022/SQL/Database Schema for LoginSystem.JPG and /dev/null differ
diff --git a/Week1-Project/RAVISHARMA022/create user.html b/Week1-Project/RAVISHARMA022/create user.html
deleted file mode 100644
index 056e225..0000000
--- a/Week1-Project/RAVISHARMA022/create user.html
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
- Create User
-
-
-
-
-
-
-
-
-
-
-
-
-
Employee ID :
-
-
First Name :
-
-
Last Name :
-
-
Father's Name :
-
-
-
-
Employee's Email :
-
-
Phone Number :
-
-
Graduation Degree :
-
-
Graduation Percentage:
-
-
-
-
12th Board :
-
-
12th Percentage :
-
-
10th Board :
-
-
10th percentage :
-
-
-
-
Country/Region :
-
-
Date of Birth :
-
-
Gender :
-
- Gender
- Male
- Female
- Other
-
-
Cyber Group Profile :
-
- Cyber Group Profile
- Intern
- Trainee
- Consultant
- Engineer
- Senior Developer
- Human Resource
-
-
-
-
-Address :
-
- Add Employee
-Messed up?Have a fresh Start
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/css/create user.css b/Week1-Project/RAVISHARMA022/css/create user.css
deleted file mode 100644
index 849c128..0000000
--- a/Week1-Project/RAVISHARMA022/css/create user.css
+++ /dev/null
@@ -1,51 +0,0 @@
-body,html {font-size: 14px; margin: 0px; font-family: georgia, Segoe Script, Bradley Hand ITC, verdana; background-image: url("../images/2.jpg");
-background-size: 100% 100%; height: 100%; }
-.header {height: 60px;padding: 10px;font-family: Comic sans ms;justify-content: space-between;Display: flex;background:;}
-img{max-height:100%;max-width:100px;margin: 0px;padding: 0px;border-radius: 50%; border: 3px solid black;}
-.wel_text{margin-top:10px; font-size: 120%;}
-.punch_line {font-size: 80%;color: #114357;padding: 3px;}
-.nav_items{margin-right: 50px;}
-.nav_btn{width:80px;height:100%;color: Black;padding: 10px 0px;background: #8e9eab;
- background: -webkit-linear-gradient(to bottom, #eef2f3, #8e9eab);background: linear-gradient(to bottom, #eef2f3, #8e9eab);}
-#nav_bar{margin-top: 5px; height: 40px; padding: 5px; border-radius: 0px; Display:flex; justify-content: flex-end;
-background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-#footer {padding: 5px; bottom: 0; height: 15px; width: 100%; text-align: center; border-radius: 100% 100% 0% 0%; position: fixed; margin-top: -0px; color: black;
-background: #8e9eab; background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-ul a{list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #8e9eab; }
-ul {list-style-type: none; margin: 0; padding: 0;}
-li a{display: block; color: black; text-align: center; padding: 0px 10px; text-decoration: none; display: flex;}
-li {float: left; }
-li a:hover {color: black; background-color: white; }
-.dropdown {position: relative;display: inline-block;}
-.dropdown-content { display: none; position: absolute; min-width: 160%; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
-padding: 12px 0px; z-index: 1; background: #8e9eab; border-radius: 0px 20px 0px 20px; }
-.dropdown:hover .dropdown-content {display: block;}
-.lower_text{color:#8e9eab; font-size: 16px; margin: 5px; margin-bottom:30px;}
-.input_box{margin: 3px;padding: 10px; width: 282px;border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-
-.Outer_box{margin-top: 20px; font-size:130%;font-family: Bradley Hand ITC; color: white;text-align: center; }
-.inner_box{float:left; color: black;}
-
-.input_box2{margin: 2px; margin-top:3px; margin-bottom: 3px;padding: 10px; width: 125px; border-radius: 6px;background: #C6FFDD; /*half box*/
-background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);}
-.input_box3{margin: 3px;padding: 5px;width: 144px;height: 43px;border-radius: 6px;}
-.label_box{margin-bottom: 20px; margin-top: 20px; height: 60px; padding: 10px; font-family:Bradley Hand ITC; justify-content: space-between; Display: flex; background: #114357;
-background: -webkit-linear-gradient(to right, #A43931, #403B4A); background: linear-gradient(to right, #A43931, #403B4A);}
-.label_text{color: white; size: 30px;}
-.DOB{width: 295px; height: 27px; margin-top:3px; padding: 5px; color: grey;border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.gender{width: 308px; height: 40px; margin-top:3px; color: grey;padding: 10px; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.designation{width: 308px; height: 41px; margin-top:3px; color: grey; padding: 10px; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.address_box{margin: 3px;padding: 10px; width: 700px; height: 60px;color: black; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.address_text{ margin-top: 15px;}
-.bigbox{margin-top: 20px; font-size:130%;font-family: Bradley Hand ITC; color: white;text-align: center;display:flex; align-items: flex-start;}
-.box_text{text-align:center; margin-bottom:5px; color: Black;}
-
-.update_btn{color: Black; padding: 8px 16px;font-size: 16px; margin-top: 10px; margin-bottom:10px; border-radius: 5px; width: 150px; height: 40px;
-background: #8e9eab;}
-.update_btn:hover{cursor: pointer; margin-bottom: 45px; transition-duration:2s; color: black; border-radius: 20px; width: 250px; height:40px;
-background: #bdc3c7;background: -webkit-linear-gradient(to top, #2c3e50, #bdc3c7);background: linear-gradient(to top, #2c3e50, #bdc3c7);}
diff --git a/Week1-Project/RAVISHARMA022/css/homepage.css b/Week1-Project/RAVISHARMA022/css/homepage.css
deleted file mode 100644
index 18b6325..0000000
--- a/Week1-Project/RAVISHARMA022/css/homepage.css
+++ /dev/null
@@ -1,38 +0,0 @@
-body,html {font-size: 14px; margin: 0px; font-family: georgia, Segoe Script, Bradley Hand ITC, verdana; background-image: url("../images/2.jpg");
-background-size: 100% 100%; height: 100%; }
-.header {height: 60px;padding: 10px;font-family: Comic sans ms;justify-content: space-between;Display: flex;background:;}
-img{max-height:100%;max-width:100px;margin: 0px;padding: 0px;border-radius: 50%; border: 3px solid black;}
-.wel_text{margin-top:10px; font-size: 120%;}
-.punch_line {font-size: 80%;color: #114357;padding: 3px;}
-.nav_items{margin-right: 50px;}
-.nav_btn{width:80px;height:100%;color: Black;padding: 10px 0px;background: #8e9eab;
- background: -webkit-linear-gradient(to bottom, #eef2f3, #8e9eab);background: linear-gradient(to bottom, #eef2f3, #8e9eab);}
-#nav_bar{margin-top: 5px; height: 40px; padding: 5px; border-radius: 0px; Display:flex; justify-content: flex-end;
-background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-#footer {padding: 5px; bottom: 0; height: 15px; width: 100%; text-align: center; border-radius: 100% 100% 0% 0%; position: fixed; margin-top: -0px; color: black;
-background: #8e9eab; background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-ul a{list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #8e9eab; }
-ul {list-style-type: none; margin: 0; padding: 0;}
-li a{display: block; color: black; text-align: center; padding: 0px 10px; text-decoration: none; display: flex;}
-li {float: left; }
-li a:hover {color: black; background-color: white; }
-.dropdown {position: relative;display: inline-block;}
-.dropdown-content { display: none; position: absolute; min-width: 160%; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
-padding: 12px 0px; z-index: 1; background: #8e9eab; border-radius: 0px 20px 0px 20px; }
-.dropdown:hover .dropdown-content {display: block;}
-.lower_text{color:#8e9eab; font-size: 16px; margin: 5px; margin-bottom:30px;}
-.input_box{margin: 3px;padding: 10px; width: 282px;border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-
-
-
-.bigbox {position:absolute; margin-top: 165px; border-radius:15px; width: 600px; height: 100%;left: 50%; top: 50%;transform: translate(-50%, -50%); text-align:center;
-background: -webkit-linear-gradient(to top, #F29492, #114357); background: linear-gradient(to top, #F29492, #114357);}
-
-
-.timeline_text{font-size:130%; font-family: Bradley Hand ITC; margin: 40px; font-weight:bold; color: white;}
-
-.login_btn{color: Black; padding: 8px 16px;font-size: 16px; margin-top: 10px; margin-bottom:10px; border-radius: 5px; width: 150px; height: 40px;
-background: #8e9eab;}
-.login_btn:hover{cursor: pointer; margin-bottom: 45px; transition-duration:2s; color: black; border-radius: 20px; width: 250px; height:40px;
-background: #bdc3c7;background: -webkit-linear-gradient(to top, #2c3e50, #bdc3c7);background: linear-gradient(to top, #2c3e50, #bdc3c7);}
diff --git a/Week1-Project/RAVISHARMA022/css/index.css b/Week1-Project/RAVISHARMA022/css/index.css
deleted file mode 100644
index e88eba6..0000000
--- a/Week1-Project/RAVISHARMA022/css/index.css
+++ /dev/null
@@ -1,34 +0,0 @@
-body,html {font-size: 14px; margin: 0px; font-family: georgia, Segoe Script, Bradley Hand ITC, verdana; background-image: url("../images/2.jpg");
-background-size: 100% 100%; height: 100%; }
-.header {height: 60px;padding: 10px;font-family: Comic sans ms;justify-content: space-between;Display: flex;background:;}
-img{max-height:100%;max-width:100px;margin: 0px;padding: 0px;border-radius: 50%; border: 3px solid black;}
-.wel_text{margin-top:10px; font-size: 120%;}
-.punch_line {font-size: 80%;color: #114357;padding: 3px;}
-.nav_items{margin-right: 50px;}
-.nav_btn{width:80px;height:100%;color: Black;padding: 10px 0px;background: #8e9eab;
- background: -webkit-linear-gradient(to bottom, #eef2f3, #8e9eab);background: linear-gradient(to bottom, #eef2f3, #8e9eab);}
-#nav_bar{margin-top: 5px; height: 40px; padding: 5px; border-radius: 0px; Display:flex; justify-content: flex-end;
-background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-#footer {padding: 5px; bottom: 0; height: 15px; width: 100%; text-align: center; border-radius: 100% 100% 0% 0%; position: fixed; margin-top: -0px; color: black;
-background: #8e9eab; background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-ul a{list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #8e9eab; }
-ul {list-style-type: none; margin: 0; padding: 0;}
-li a{display: block; color: black; text-align: center; padding: 0px 10px; text-decoration: none; display: flex;}
-li {float: left; }
-li a:hover {color: black; background-color: white; }
-.dropdown {position: relative;display: inline-block;}
-.dropdown-content { display: none; position: absolute; min-width: 160%; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
-padding: 12px 0px; z-index: 1; background: #8e9eab; border-radius: 0px 20px 0px 20px; }
-.dropdown:hover .dropdown-content {display: block;}
-.lower_text{color:#8e9eab; font-size: 16px; margin: 5px; margin-bottom:30px;}
-.input_box{margin: 3px;padding: 10px; width: 282px;border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-
-
-.bigbox {position:absolute; top: 50%; left: 50%; width: 300px; height: 350px;transform: translate(-50%, -50%); text-align:center;}
-.logbox {font-size:130%; font-family: Bradley Hand ITC; font-weight:bold; color: #8e9eab;}
-
-.login_btn{color: Black; padding: 8px 16px;font-size: 16px; margin-top: 20px; margin-bottom:20px; border-radius: 5px; width: 150px; height: 40px;
-background: #8e9eab;}
-.login_btn:hover{cursor: pointer; margin-bottom: 45px; transition-duration:2s; color: black; border-radius: 20px; width: 250px; height:40px;
-background: #bdc3c7;background: -webkit-linear-gradient(to top, #2c3e50, #bdc3c7);background: linear-gradient(to top, #2c3e50, #bdc3c7);}
diff --git a/Week1-Project/RAVISHARMA022/css/my profile.css b/Week1-Project/RAVISHARMA022/css/my profile.css
deleted file mode 100644
index b4831d4..0000000
--- a/Week1-Project/RAVISHARMA022/css/my profile.css
+++ /dev/null
@@ -1,52 +0,0 @@
-body,html {font-size: 14px; margin: 0px; font-family: georgia, Segoe Script, Bradley Hand ITC, verdana; background-image: url("../images/2.jpg");
-background-size: 100% 100%; height: 100%; }
-.header {height: 60px;padding: 10px;font-family: Comic sans ms;justify-content: space-between;Display: flex;background:;}
-img{max-height:100%;max-width:100px;margin: 0px;padding: 0px;border-radius: 50%; border: 3px solid black;}
-.wel_text{margin-top:10px; font-size: 120%;}
-.punch_line {font-size: 80%;color: #114357;padding: 3px;}
-.nav_items{margin-right: 50px;}
-.nav_btn{width:80px;height:100%;color: Black;padding: 10px 0px;background: #8e9eab;
- background: -webkit-linear-gradient(to bottom, #eef2f3, #8e9eab);background: linear-gradient(to bottom, #eef2f3, #8e9eab);}
-#nav_bar{margin-top: 5px; height: 40px; padding: 5px; border-radius: 0px; Display:flex; justify-content: flex-end;
-background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-#footer {padding: 5px; bottom: 0; height: 15px; width: 100%; text-align: center; border-radius: 100% 100% 0% 0%; position: fixed; margin-top: -0px; color: black;
-background: #8e9eab; background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-ul a{list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #8e9eab; }
-ul {list-style-type: none; margin: 0; padding: 0;}
-li a{display: block; color: black; text-align: center; padding: 0px 10px; text-decoration: none; display: flex;}
-li {float: left; }
-li a:hover {color: black; background-color: white; }
-.dropdown {position: relative;display: inline-block;}
-.dropdown-content { display: none; position: absolute; min-width: 160%; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
-padding: 12px 0px; z-index: 1; background: #8e9eab; border-radius: 0px 20px 0px 20px; }
-.dropdown:hover .dropdown-content {display: block;}
-.lower_text{color:#8e9eab; font-size: 16px; margin: 5px; margin-bottom:30px;}
-.input_box{margin: 3px;padding: 10px; width: 282px;border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-
-.Outer_box{margin-top: 20px; font-size:130%;font-family: Bradley Hand ITC; color: white;text-align: center; }
-.inner_box{float:left; color: black;}
-
-.input_box2{margin: 2px; margin-top:3px; margin-bottom: 3px;padding: 10px; width: 125px; border-radius: 6px;background: #C6FFDD; /*half box*/
-background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);}
-.input_box3{margin: 3px;padding: 5px;width: 144px;height: 43px;border-radius: 6px;}
-
-.label_box{margin-bottom: 20px; margin-top: 20px; height: 60px; padding: 10px; font-family:Bradley Hand ITC; justify-content: space-between; Display: flex; background: #114357;
-background: -webkit-linear-gradient(to right, #A43931, #403B4A); background: linear-gradient(to right, #A43931, #403B4A);}
-.label_text{color: white; size: 30px;}
-.DOB{width: 295px; height: 27px; margin-top:3px; padding: 5px; color: black;border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.gender{width: 308px; height: 40px; margin-top:3px; color: black;padding: 10px; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.designation{width: 308px; height: 41px; margin-top:3px; color: black; padding: 10px; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.address_box{margin: 3px;padding: 10px; width: 700px; height: 60px;color: black; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.address_text{ margin-top: 15px;}
-.bigbox{margin-top: 20px; font-size:130%;font-family: Bradley Hand ITC; color: white;text-align: center;display:flex; align-items: flex-start;}
-.box_text{text-align:center; margin-bottom:5px; color: Black;}
-
-.update_btn{color: Black; padding: 8px 16px;font-size: 16px; margin-top: 10px; margin-bottom:10px; border-radius: 5px; width: 150px; height: 40px;
-background: #8e9eab;}
-.update_btn:hover{cursor: pointer; margin-bottom: 45px; transition-duration:2s; color: black; border-radius: 20px; width: 250px; height:40px;
-background: #bdc3c7;background: -webkit-linear-gradient(to top, #2c3e50, #bdc3c7);background: linear-gradient(to top, #2c3e50, #bdc3c7);}
diff --git a/Week1-Project/RAVISHARMA022/css/reset password.css b/Week1-Project/RAVISHARMA022/css/reset password.css
deleted file mode 100644
index 30c5cbc..0000000
--- a/Week1-Project/RAVISHARMA022/css/reset password.css
+++ /dev/null
@@ -1,35 +0,0 @@
-body,html {font-size: 14px; margin: 0px; font-family: georgia, Segoe Script, Bradley Hand ITC, verdana; background-image: url("../images/2.jpg");
-background-size: 100% 100%; height: 100%; }
-.header {height: 60px;padding: 10px;font-family: Comic sans ms;justify-content: space-between;Display: flex;background:;}
-img{max-height:100%;max-width:100px;margin: 0px;padding: 0px;border-radius: 50%; border: 3px solid black;}
-.wel_text{margin-top:10px; font-size: 120%;}
-.punch_line {font-size: 80%;color: #114357;padding: 3px;}
-.nav_items{margin-right: 50px;}
-.nav_btn{width:80px;height:100%;color: Black;padding: 10px 0px;background: #8e9eab;
- background: -webkit-linear-gradient(to bottom, #eef2f3, #8e9eab);background: linear-gradient(to bottom, #eef2f3, #8e9eab);}
-#nav_bar{margin-top: 5px; height: 40px; padding: 5px; border-radius: 0px; Display:flex; justify-content: flex-end;
-background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-#footer {padding: 5px; bottom: 0; height: 15px; width: 100%; text-align: center; border-radius: 100% 100% 0% 0%; position: fixed; margin-top: -0px; color: black;
-background: #8e9eab; background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-ul a{list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #8e9eab; }
-ul {list-style-type: none; margin: 0; padding: 0;}
-li a{display: block; color: black; text-align: center; padding: 0px 10px; text-decoration: none; display: flex;}
-li {float: left; }
-li a:hover {color: black; background-color: white; }
-.dropdown {position: relative;display: inline-block;}
-.dropdown-content { display: none; position: absolute; min-width: 160%; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
-padding: 12px 0px; z-index: 1; background: #8e9eab; border-radius: 0px 20px 0px 20px; }
-.dropdown:hover .dropdown-content {display: block;}
-.lower_text{color:#8e9eab; font-size: 16px; margin: 5px; margin-bottom:30px;}
-.input_box{margin: 3px;padding: 10px; width: 275px;border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.DOB{width: 200px; height: 27px; margin-top:6px; margin-bottom: 0px; color: grey; padding: 5px; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-
-.bigbox {position:absolute; top: 50%; left: 50%; width: 300px; height: 350px;transform: translate(-50%, -50%); text-align:center;}
-.logbox {font-size:130%; font-family: Bradley Hand ITC; font-weight:bold; color: #8e9eab;}
-
-.login_btn{color: Black; padding: 8px 8px;font-size: 16px; margin-top: 20px; margin-bottom:20px; border-radius: 5px; width: 150px; height: 40px;
-background: #8e9eab;}
-.login_btn:hover{cursor: pointer; margin-bottom: 45px; transition-duration:2s; color: black; border-radius: 20px; width: 250px; height:40px;
-background: #bdc3c7;background: -webkit-linear-gradient(to top, #2c3e50, #bdc3c7);background: linear-gradient(to top, #2c3e50, #bdc3c7);}
diff --git a/Week1-Project/RAVISHARMA022/css/show user.css b/Week1-Project/RAVISHARMA022/css/show user.css
deleted file mode 100644
index 6e1ec28..0000000
--- a/Week1-Project/RAVISHARMA022/css/show user.css
+++ /dev/null
@@ -1,50 +0,0 @@
-body,html {font-size: 14px; margin: 0px; font-family: georgia, Segoe Script, Bradley Hand ITC, verdana; background-image: url("../images/2.jpg");
-background-size: 100% 100%; height: 100%; }
-.header {height: 60px;padding: 10px;font-family: Comic sans ms;justify-content: space-between;Display: flex;background:;}
-img{max-height:100%;max-width:100px;margin: 0px;padding: 0px;border-radius: 50%; border: 3px solid black;}
-.wel_text{margin-top:10px; font-size: 120%;}
-.punch_line {font-size: 80%;color: #114357;padding: 3px;}
-.nav_items{margin-right: 50px;}
-.nav_btn{width:80px;height:100%;color: Black;padding: 10px 0px;background: #8e9eab;
- background: -webkit-linear-gradient(to bottom, #eef2f3, #8e9eab);background: linear-gradient(to bottom, #eef2f3, #8e9eab);}
-#nav_bar{margin-top: 5px; height: 40px; padding: 5px; border-radius: 0px; Display:flex; justify-content: flex-end;
-background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-#footer {padding: 5px; bottom: 0;height: 15px;width: 100%;text-align: center; border-radius: 100% 100% 0% 0%; position: fixed;margin-top: -0px;color: black;
-background: #8e9eab; background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-ul a{list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #8e9eab; }
-ul {list-style-type: none; margin: 0; padding: 0;}
-li a{display: block; color: black; text-align: center; padding: 0px 10px; text-decoration: none; display: flex;}
-li {float: left; }
-li a:hover {color: black; background-color: white; }
-.dropdown {position: relative;display: inline-block;}
-.dropdown-content { display: none; position: absolute; min-width: 160%; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
-padding: 12px 0px; z-index: 1; background: #8e9eab; border-radius: 0px 20px 0px 20px; }
-.dropdown:hover .dropdown-content {display: block;}
-.lower_text{color:#8e9eab; font-size: 16px; margin: 5px; margin-bottom:30px;}
-.input_box{margin: 3px;padding: 10px; width: 282px;border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-
-.Outer_box{margin-top: 20px; font-size:130%;font-family: Bradley Hand ITC; color: white;text-align: center; }
-.inner_box{float:left; color: black;}
-
-.input_box2{margin: 2px; margin-top:3px; margin-bottom: 3px;padding: 10px; width: 125px; border-radius: 6px;background: #C6FFDD; /*code for half box*/
-background: -webkit-linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);background: linear-gradient(to left, #f7797d, #FBD786, #C6FFDD);}
-.input_box3{margin: 3px;padding: 5px;width: 144px;height: 43px;border-radius: 6px;}
-.label_box{margin-bottom: 20px; margin-top: 20px; height: 60px; padding: 10px; font-family:Bradley Hand ITC; justify-content: space-between;
-Display: flex; background: #114357;background: -webkit-linear-gradient(to right, #A43931, #403B4A); background: linear-gradient(to right, #A43931, #403B4A);}
-.label_text{color: white; size: 30px;}
-.DOB{width: 295px; height: 27px; margin-top:3px; padding: 5px; color: grey;border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.gender{width: 308px; height: 40px; margin-top:3px; color: grey;padding: 10px; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.designation{width: 308px; height: 41px; margin-top:3px; color: grey; padding: 10px; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.address_box{margin: 3px;padding: 10px; width: 700px; height: 60px;color: black; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.address_text{ margin-top: 15px;}
-.bigbox{margin-top: 20px; font-size:130%;font-family: Bradley Hand ITC; color: white;text-align: center;display:flex; align-items: flex-start;}
-.box_text{text-align:center; margin-bottom:5px; color: Black;}
-
-.update_btn{color: Black; padding: 8px 16px;font-size: 16px;margin: 80px;margin-top: 10px; margin-bottom:10px; border-radius: 5px; width: 150px; height: 40px;
-background: #8e9eab;}
-
diff --git a/Week1-Project/RAVISHARMA022/css/signup.css b/Week1-Project/RAVISHARMA022/css/signup.css
deleted file mode 100644
index 0b0472d..0000000
--- a/Week1-Project/RAVISHARMA022/css/signup.css
+++ /dev/null
@@ -1,42 +0,0 @@
-body,html {font-size: 14px; margin: 0px; font-family: georgia, Segoe Script, Bradley Hand ITC, verdana; background-image: url("../images/2.jpg");
-background-size: 100% 100%; height: 100%; }
-.header {height: 60px;padding: 10px;font-family: Comic sans ms;justify-content: space-between;Display: flex;background:;}
-img{max-height:100%;max-width:100px;margin: 0px;padding: 0px;border-radius: 50%; border: 3px solid black;}
-.wel_text{margin-top:10px; font-size: 120%;}
-.punch_line {font-size: 80%;color: #114357;padding: 3px;}
-.nav_items{margin-right: 50px;}
-.nav_btn{width:80px;height:100%;color: Black;padding: 10px 0px;background: #8e9eab;
- background: -webkit-linear-gradient(to bottom, #eef2f3, #8e9eab);background: linear-gradient(to bottom, #eef2f3, #8e9eab);}
-#nav_bar{margin-top: 5px; height: 40px; padding: 5px; border-radius: 0px; Display:flex; justify-content: flex-end;
-background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-#footer {padding: 5px; bottom: 0; height: 15px; width: 100%; text-align: center; border-radius: 100% 100% 0% 0%; position: fixed; margin-top: -0px; color: black;
-background: #8e9eab; background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-ul a{list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #8e9eab; }
-ul {list-style-type: none; margin: 0; padding: 0;}
-li a{display: block; color: black; text-align: center; padding: 0px 10px; text-decoration: none; display: flex;}
-li {float: left; }
-li a:hover {color: black; background-color: white; }
-.dropdown {position: relative;display: inline-block;}
-.dropdown-content { display: none; position: absolute; min-width: 160%; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
-padding: 12px 0px; z-index: 1; background: #8e9eab; border-radius: 0px 20px 0px 20px; }
-.dropdown:hover .dropdown-content {display: block;}
-.lower_text{color:#8e9eab; font-size: 16px; margin: 0px; margin-bottom:30px;}
-.input_box{margin: 3px;padding: 10px; width: 282px;border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.input_box2 {margin: 2px; margin-top:3px; margin-bottom: 3px;padding: 10px; width: 125px; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.input_box3 {margin: 3px;padding: 5px;width: 144px;height: 43px;border-radius: 6px;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-
-.bigbox {margin-top: 20px; font-size:130%;font-family: Bradley Hand ITC; color: black;font-weight:bold;text-align: center;}
-.smallbox{}
-.gender{width: 305px; height: 41px; margin-top:3px; color: grey; padding: 10px; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-.DOB{width: 182px; height: 27px; margin-top:6px; margin-bottom: 0px; color: grey; padding: 5px; border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-
-.signup_btn{color: Black; padding: 8px 16px;font-size: 16px; margin-top: 10px; margin-bottom:10px; border-radius: 5px; width: 150px; height: 40px;
-background: #8e9eab;}
-.signup_btn:hover{cursor: pointer; margin-bottom: 35px; transition-duration:2s; color: black; border-radius: 20px; width: 250px; height:40px;
-background: #bdc3c7;background: -webkit-linear-gradient(to top, #2c3e50, #bdc3c7);background: linear-gradient(to top, #2c3e50, #bdc3c7);}
-.licence_box{ margin: 3px; padding:5px}
diff --git a/Week1-Project/RAVISHARMA022/css/user list.css b/Week1-Project/RAVISHARMA022/css/user list.css
deleted file mode 100644
index ee6f405..0000000
--- a/Week1-Project/RAVISHARMA022/css/user list.css
+++ /dev/null
@@ -1,38 +0,0 @@
-body,html {font-size: 14px; margin: 0px; font-family: georgia, Segoe Script, Bradley Hand ITC, verdana; background-image: url("../images/2.jpg");
-background-size: 100% 100%; height: 100%; }
-.header {height: 60px;padding: 10px;font-family: Comic sans ms;justify-content: space-between;Display: flex;background:;}
-img{max-height:100%;max-width:100px;margin: 0px;padding: 0px;border-radius: 50%; border: 3px solid black;}
-.wel_text{margin-top:10px; font-size: 120%;}
-.punch_line {font-size: 80%;color: #114357;padding: 3px;}
-.nav_items{margin-right: 50px;}
-.nav_btn{width:80px;height:100%;color: Black;padding: 10px 0px;background: #8e9eab;
- background: -webkit-linear-gradient(to bottom, #eef2f3, #8e9eab);background: linear-gradient(to bottom, #eef2f3, #8e9eab);}
-#nav_bar{margin-top: 5px; height: 40px; padding: 5px; border-radius: 0px; Display:flex; justify-content: flex-end;
-background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-#footer {padding: 5px; bottom: 0; height: 15px; width: 100%; text-align: center; border-radius: 100% 100% 0% 0%; position: fixed; margin-top: -0px; color: black;
-background: #8e9eab; background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);background: linear-gradient(to top, #eef2f3, #8e9eab);}
-ul a{list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #8e9eab; }
-ul {list-style-type: none; margin: 0; padding: 0;}
-li a{display: block; color: black; text-align: center; padding: 0px 10px; text-decoration: none; display: flex;}
-li {float: left; }
-li a:hover {color: black; background-color: white; }
-.dropdown {position: relative;display: inline-block;}
-.dropdown-content { display: none; position: absolute; min-width: 160%; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
-padding: 12px 0px; z-index: 1; background: #8e9eab; border-radius: 0px 20px 0px 20px; }
-.dropdown:hover .dropdown-content {display: block;}
-.lower_text{color:#8e9eab; font-size: 16px; margin: 5px; margin-bottom:30px;}
-.input_box{margin: 3px;padding: 10px; width: 282px;border-radius: 6px;background: #C6FFDD;
-background: #8e9eab; background: -webkit-linear-gradient(to left, #eef2f3, #8e9eab);background: linear-gradient(to left, #eef2f3, #8e9eab);}
-
-
-.bigbox {align-content: center; width: 1100px;}
-table{padding: 10px; margin: 10px; margin-top: 15px; color: white;}
-th{padding: 10px; margin: 0px; color: black; border: #F29492; background: -webkit-linear-gradient(to top, #F29492, #114357); background: linear-gradient(to top, #F29492, #114357);}
-td{padding: 10px; margin: 0px; color: white; border: 2px #403B4A;}
-tr{padding: 7px; margin: 0px; color: white; border: 2px #403B4A; background-color: #403B4A;}
-tr:nth-of-type(2n+1){padding: 7px; margin: 0px; color:white; border: 2px solid black; background-color: #A43931;}
-.showlist_btn{color: Black; padding: 8px 16px;font-size: 16px; margin-top: 10px; margin-bottom:10px; border-radius: 5px; width: 150px; height: 40px;
-background: #8e9eab;}
-.showlist_btn:hover{cursor: pointer; margin-bottom: 35px; transition-duration:2s; color: black; border-radius: 20px; width: 250px; height:40px;
-background: #bdc3c7;background: -webkit-linear-gradient(to top, #2c3e50, #bdc3c7);background: linear-gradient(to top, #2c3e50, #bdc3c7);}
-.editbutton{color:White;background:none;border:none;}
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/homepage.html b/Week1-Project/RAVISHARMA022/homepage.html
deleted file mode 100644
index dfa4a13..0000000
--- a/Week1-Project/RAVISHARMA022/homepage.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
- Homepage
-
-
-
-
-
-
-
-
-
-
-
-
-
This is Your Timeline
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/images/1.jpg b/Week1-Project/RAVISHARMA022/images/1.jpg
deleted file mode 100644
index d806f6c..0000000
Binary files a/Week1-Project/RAVISHARMA022/images/1.jpg and /dev/null differ
diff --git a/Week1-Project/RAVISHARMA022/images/2.jpg b/Week1-Project/RAVISHARMA022/images/2.jpg
deleted file mode 100644
index 24bbe29..0000000
Binary files a/Week1-Project/RAVISHARMA022/images/2.jpg and /dev/null differ
diff --git a/Week1-Project/RAVISHARMA022/images/3.jpg b/Week1-Project/RAVISHARMA022/images/3.jpg
deleted file mode 100644
index 326dec9..0000000
Binary files a/Week1-Project/RAVISHARMA022/images/3.jpg and /dev/null differ
diff --git a/Week1-Project/RAVISHARMA022/images/4.jpg b/Week1-Project/RAVISHARMA022/images/4.jpg
deleted file mode 100644
index c674bdc..0000000
Binary files a/Week1-Project/RAVISHARMA022/images/4.jpg and /dev/null differ
diff --git a/Week1-Project/RAVISHARMA022/images/5.jpg b/Week1-Project/RAVISHARMA022/images/5.jpg
deleted file mode 100644
index fa9a66c..0000000
Binary files a/Week1-Project/RAVISHARMA022/images/5.jpg and /dev/null differ
diff --git a/Week1-Project/RAVISHARMA022/images/6.jpg b/Week1-Project/RAVISHARMA022/images/6.jpg
deleted file mode 100644
index 0cc964e..0000000
Binary files a/Week1-Project/RAVISHARMA022/images/6.jpg and /dev/null differ
diff --git a/Week1-Project/RAVISHARMA022/images/cyg_logo.jpg b/Week1-Project/RAVISHARMA022/images/cyg_logo.jpg
deleted file mode 100644
index 8022e99..0000000
Binary files a/Week1-Project/RAVISHARMA022/images/cyg_logo.jpg and /dev/null differ
diff --git a/Week1-Project/RAVISHARMA022/index.html b/Week1-Project/RAVISHARMA022/index.html
deleted file mode 100644
index 6134e7d..0000000
--- a/Week1-Project/RAVISHARMA022/index.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
- Cyber Group Login
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/js/create user.js b/Week1-Project/RAVISHARMA022/js/create user.js
deleted file mode 100644
index 7d035ba..0000000
--- a/Week1-Project/RAVISHARMA022/js/create user.js
+++ /dev/null
@@ -1,69 +0,0 @@
-function CreateUser(){
- var employeeid = document.getElementById("Employee Id").value;
- var empid=employeeid.valueOf();
- var firstname = document.getElementById("First Name").value;
- var fname=firstname.valueOf();
- var lastname = document.getElementById("Last Name").value;
- var lname=lastname.valueOf();
- var fathername = document.getElementById("Father Name").value;
- var fathersname=fathername.valueOf();
- var email = document.getElementById("Email").value;
- var mail=email.valueOf();
- var phone = document.getElementById("Phone Number").value;
- var mobile=phone.valueOf();
- var graddegree = document.getElementById("Graduation Degree").value;
- var degree=graddegree.valueOf();
- var gradmarks = document.getElementById("Graduation Percentage").value;
- var twelfthboard = document.getElementById("Twelfth Board").value;
- var board12=twelfthboard.valueOf();
- var twelfthmarks = document.getElementById("Twelfth Percentage").value;
- var tenthboard = document.getElementById("Tenth Board").value;
- var board10=tenthboard.valueOf();
- var tenthmarks = document.getElementById("Tenth Percentage").value;
- var country = document.getElementById("Country").value;
- var region=country.valueOf();
- var dob = document.getElementById("dob").value;
- var gender = document.getElementById("Gender").value;
- var sex=gender.valueOf();
- var designation = document.getElementById("Designation").value;
- var profile=designation.valueOf();
- var address = document.getElementById("Address").value;
-
- var datafor_EmployeeDetail={
- "EducationDetail": {
- "Id": empid,
- "TenthBoard": board10,
- "Tenthmarks": tenthmarks,
- "Twelfthboard": board12,
- "Twelfthmarks": twelfthmarks,
- "GraduationDegree": degree,
- "GraduationMarks": gradmarks,
-
- },
- "Id": empid,
- "firstname":fname,
- "lastname":lname,
- "fathername": fathersname,
- "Email":mail,
- "Phone": mobile,
- "country":region,
- "dob":dob,
- "gender": sex,
- "designation": profile,
- "address": address,
- };
- $.ajax({
- url: 'http://localhost:50052/api/EmployeeDetail',
- data: datafor_EmployeeDetail,
- type: 'POST',
- dataType: 'json',
- success: function(response){
- alert("User have been successfully added");
- window.location="user list.html";
- }
- });
-};
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/js/homepage.js b/Week1-Project/RAVISHARMA022/js/homepage.js
deleted file mode 100644
index da8a137..0000000
--- a/Week1-Project/RAVISHARMA022/js/homepage.js
+++ /dev/null
@@ -1,21 +0,0 @@
-function loginform()
- {
- var Id = document.getElementById("Id").value;
- var email = document.getElementById("Email").value;
- var pass = document.getElementById("Password").value;
- $.ajax({
- url: 'http://localhost:50052/api/AuthenticateUser/'+ Id,
- type: 'GET',
- dataType: 'json',
- success: function(res)
- {
- if(pass == res.password){
- window.location.href = "homepage.html";
- }
- else {
- window.location.href = "index.html";
- }
- }
- });
- }
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/js/index.js b/Week1-Project/RAVISHARMA022/js/index.js
deleted file mode 100644
index da8a137..0000000
--- a/Week1-Project/RAVISHARMA022/js/index.js
+++ /dev/null
@@ -1,21 +0,0 @@
-function loginform()
- {
- var Id = document.getElementById("Id").value;
- var email = document.getElementById("Email").value;
- var pass = document.getElementById("Password").value;
- $.ajax({
- url: 'http://localhost:50052/api/AuthenticateUser/'+ Id,
- type: 'GET',
- dataType: 'json',
- success: function(res)
- {
- if(pass == res.password){
- window.location.href = "homepage.html";
- }
- else {
- window.location.href = "index.html";
- }
- }
- });
- }
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/js/my profile.js b/Week1-Project/RAVISHARMA022/js/my profile.js
deleted file mode 100644
index b7d1b13..0000000
--- a/Week1-Project/RAVISHARMA022/js/my profile.js
+++ /dev/null
@@ -1,34 +0,0 @@
-function showdetail(){
- //var Id=;
- $.ajax ({
- url: "http://localhost:50052/api/EmployeeDetail/"+Id,
- type: 'GET',
- dataType: 'json',
- success: function(EmpDetail){
- document.getElementById("Employee Id").value=EmpDetail.Id;
- document.getElementById("First Name").value=EmpDetail.firstname;
- document.getElementById("Last Name").value=EmpDetail.lastname;
- document.getElementById("Father Name").value=EmpDetail.fathername;
- document.getElementById("Email").value=EmpDetail.Email;
- document.getElementById("Phone Number").value=EmpDetail.Phone;
- document.getElementById("Country").value=EmpDetail.country;
- document.getElementById("Dob").value=EmpDetail.dob;
- document.getElementById("Gender").value=EmpDetail.gender;
- document.getElementById("Designation").value=EmpDetail.designation;
- document.getElementById("Address").value=EmpDetail.address;
- }
- });
- $.ajax ({
- url: "http://localhost:50052/api/EducationDetail/"+Id,
- type: 'GET',
- dataType: 'json',
- success: function(EduDetail){
- document.getElementById("Graduation Degree").value=EduDetail.GraduationDegree;
- document.getElementById("Graduation Percentage").value=EduDetail.GraduationMarks;
- document.getElementById("12 Board").value=EduDetail.TwelfthBoard;
- document.getElementById("12 Percentage").value=EduDetail.TwelfthMarks;
- document.getElementById("10 Board").value=EduDetail.TenthBoard;
- document.getElementById("10 Percentage").value=EduDetail.TenthMarks;
- }
- });
-};
diff --git a/Week1-Project/RAVISHARMA022/js/reset password.js b/Week1-Project/RAVISHARMA022/js/reset password.js
deleted file mode 100644
index 882ae38..0000000
--- a/Week1-Project/RAVISHARMA022/js/reset password.js
+++ /dev/null
@@ -1,34 +0,0 @@
-function changepassword(){
- var Id = document.getElementById("Id").value;
- var Email = document.getElementById("Email").value;
- var dob = document.getElementById("dob").value;
- var pass = document.getElementById("Password").value;
- var repass = document.getElementById("Repassword").value;
- if(pass==repass){
- $.ajax({
- url: 'http://localhost:50052/api/EmployeeDetail/'+Id,
- type: 'GET',
- dataType: 'json',
- success: function(res){
- if(Id == res.Id && Email == res.Email && dob == res.dob){
- var datato_resetpassword {"Id": Id,
- "Email": res.Email,
- "password": pass,
- "Terms": true}
- $.ajax({url: 'http://localhost:50052/api/AuthenticateUser/',
- type: 'POST',
- data: datato_resetpassword,
- dataType: 'json',
- success: function(response)
- {
- alert("Your Password Has been changed Please Login to access your profile")
- window.location.href = "index.html";
- }
- });
- }else {alert("Details Do not match our databases");
- window.location.href = "reset password.html";}
- }
- });
- }else{alert("Both Password Should Match");window.location.href = "reset password.html";}
- }
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/js/show user.js b/Week1-Project/RAVISHARMA022/js/show user.js
deleted file mode 100644
index 8990dc6..0000000
--- a/Week1-Project/RAVISHARMA022/js/show user.js
+++ /dev/null
@@ -1,125 +0,0 @@
-var getURL = function getURL(parm){
- var Pageurl = window.location.search.substring(1),
- URLVariables = Pageurl.split('&'),
- ParameterName, i;
-
- for(i=0; i"
- }
- }
- });
-}
-function ThrowId(Id){
- window.location = "show user.html?Id="+Id;
-}
-
-
-
-
-/*function showlist(){
- $.ajax ({
- url: "http://localhost:50052/api/EmployeeDetail",
- type: 'GET',
- dataType: 'json',
- success: function(data)
- {
- var table=document.getElementById("mytable");
- for (var i=0; i
-
-
-account setting
-
-
-
-
-Account Setting
-
-
-
-Enter your login credentials
-
-change Password?
-change Profile picture
-change your username
-update email phone number
- delete your account
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/my profile.html b/Week1-Project/RAVISHARMA022/my profile.html
deleted file mode 100644
index 720486d..0000000
--- a/Week1-Project/RAVISHARMA022/my profile.html
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
- Update Profile
-
-
-
-
-
-
-
-
-
-
-
-
-
Employee ID :
-
-
First Name :
-
-
Last Name :
-
-
Father's Name :
-
-
-
-
Employee's Email :
-
-
Phone Number :
-
-
Graduation Degree :
-
-
Graduation Percentage:
-
-
-
-
12th Board :
-
-
12th Percentage :
-
-
10th Board :
-
-
10th percentage :
-
-
-
-
Country/Region :
-
-
Date of Birth :
-
-
Gender :
-
- Gender
- Male
- Female
- Other
-
-
Cyber Group Profile :
-
- Cyber Group Profile
- Intern
- Trainee
- Consultant
- Engineer
- Senior Developer
- Human Resource
-
-
-
-
-Address :
-
- Update Profile
-Messed up?Have a fresh Start
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/reset password.html b/Week1-Project/RAVISHARMA022/reset password.html
deleted file mode 100644
index 331a426..0000000
--- a/Week1-Project/RAVISHARMA022/reset password.html
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
- Reset Password
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/show user.html b/Week1-Project/RAVISHARMA022/show user.html
deleted file mode 100644
index 458e2ad..0000000
--- a/Week1-Project/RAVISHARMA022/show user.html
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
- Show User Details
-
-
-
-
-
-
-
-
-
-
-
-
-
Employee ID :
-
-
First Name :
-
-
Last Name :
-
-
Father's Name :
-
-
-
-
Employee's Email :
-
-
Phone Number :
-
-
Graduation Degree :
-
-
Graduation Percentage:
-
-
-
-
12th Board :
-
-
12th Percentage :
-
-
10th Board :
-
-
10th percentage :
-
-
-
-
Country/Region :
-
-
Date of Birth :
-
-
Gender :
-
-
Cyber Group Profile :
-
-
-
-
-Address :
-
- Update Details
- Delete User
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/signup.html b/Week1-Project/RAVISHARMA022/signup.html
deleted file mode 100644
index f28ee1b..0000000
--- a/Week1-Project/RAVISHARMA022/signup.html
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
- SignUp page
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RAVISHARMA022/user list.html b/Week1-Project/RAVISHARMA022/user list.html
deleted file mode 100644
index dca86db..0000000
--- a/Week1-Project/RAVISHARMA022/user list.html
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
- Employee List
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Employee Id
- First Name
- Last Name
- Employee's Email
- Phone Number
- Date of Birth
- Designation
- View or Edit
-
-
-
-
-
-
-
-
-
-
diff --git a/Week1-Project/RishabhGupta011/create.css b/Week1-Project/RishabhGupta011/create.css
deleted file mode 100644
index edc4879..0000000
--- a/Week1-Project/RishabhGupta011/create.css
+++ /dev/null
@@ -1,245 +0,0 @@
-
-*{
- box-sizing: border-box;
- margin: 0px;
- padding: 0px;
- font-family: 'Roboto', sans-serif;
-}
-
-.header{
- height:60px;
-
- background-color: white;
- position: fixed;
- display: flex;
- width: 100%;
- z-index: 1;
- justify-content: space-between;
- box-shadow: 250px 1px 17px 1px rgba(184,173,173,1);
-
-}
-.logo-wrap{
- display: flex;
-}
-.logo{
- display: flex;
- padding: 12px 0 12px 12px;
-}
-.logo-img{
- width: 100%;
- max-width:40%;
-}
-.body-container{
- /* overflow: auto; */
- padding-top:45px;
- padding-left: 300px;
- padding-right: 20px;
-
-}
-.hamburger-btn{
- display: none;
- align-self: center;
- margin-left: 10px;
- cursor: pointer;
-}
-.sidebar{
- position:fixed;
- width: 250px;
- background-color: #212121;
- height: 100%;
- padding-top: 110px;
- left: 0;
-
-}
-.sidebar .item{
- padding: 15px;
- color: white;
-
-}
-.sidebar .item-active{
- background-color:#ffffff1a;
- border-left: 5px solid #f30000;
-}
-
-.sidebar .item:hover{
- background-color:#ffffff1a;
-
-}
-.section{
-
- width:100%;
- /* background-color:azure;*/
- /* height:400px;*/
- margin: 60px auto;
-
- overflow: auto;
- border-radius: 4px;
- display: flex;
- flex-direction: column;
- -webkit-box-shadow: 0px 1px 2px 1px #999;
- -moz-box-shadow: 0px 1px 2px 1px #999;
- box-shadow: 0px 1px 2px 1px #999;
-}
-.subform{
- width: 50%;
- padding: 20px;
-}
-.middle-nav{
- display: flex;
-}
-
-.nav-item{
- padding: 20px;
- margin-right:10px;
-
-}
-.nav-item:hover{
- cursor: pointer;
- background-color: beige;
-
-}
-
-.grp{
- display: flex;
- flex-direction: column;
- margin:20px;
-}
-.section-head-txt-wrap{
- background-color: #000033;
- padding: 15px 20px;
- /* text-align: center;*/
- font-size: 15px;
-
-}
-.section-head-txt{
- color: white;
-
-}
-.form-wrap{
- padding: 20px;
- background-color: #f4f5f5fc;
- display: flex;
- flex-direction: column;
-
-
-}
-.form-head{
- font-weight: 600;
- text-align: center;
- /* background-color: yellow;*/
- border-bottom: 4px solid #78ce42;
- /* border-top: 5px solid #78ce42;*/
- align-self: center;
- padding: 5px;
- border-radius: 5px;
-}
-.form-content{
- display: flex;
- justify-content: space-around;
- flex-wrap: wrap;
-}
-.table-responsive{
- overflow-x: auto;
-}
-
-.table-wrap table{
- margin: 0px 30px;
- margin-top: 30px;
- width: 93%;
- text-align: center;
- border-collapse: collapse;
-
-}
-.table-wrap table td,th{
- padding: 10px;
- border: 1px solid grey;
-}
-.grp > label{
- font-size: 12px;
- padding-bottom: 10px;
-}
-.grp > input{
- height: 30px;
- padding-left: 2px;
-
-}
-.input-radio-wrap{
- height: 30px;
- display: flex;
- align-items: center;
-}
-
-.submit-btn{
- padding: 10px;
- margin-top: 30px;
- width:230px;
- align-self: center;
- background-color: #000033;
- border-color: #000033;
- color: white;
- border-radius: 2px;
-}
-
-a:link,a:hover,a:active,a:visited{
- text-decoration: none;
- color: black;
-}
-
-@media only screen and (min-width:961px){
- .sidebar{
- left:0px !important;
- }
-}
-
-@media only screen and (min-width: 600px) and (max-width:960px) {
- .sidebar{
-
- transition: left 1s;
- left:-250px;
- }
- .hamburger-btn{
- display: block;
- }
- .body-container{
- padding-left: 20px;
- }
- .header{
- box-shadow: 0px 1px 17px 1px rgba(184,173,173,1);
- }
- .employee-table td:nth-child(4){
- display: none;
- }
-}
-@media only screen and (min-width: 320px) and (max-width:599px) {
- .sidebar{
-
- transition: left 1s;
- left:-250px;
- }
- .hamburger-btn{
- display: block;
- }
- .body-container{
- padding-left: 20px;
- }
- .header{
- box-shadow: 0px 1px 17px 1px rgba(184,173,173,1);
- }
-
- .body-container,.form-wrap{
- padding-left: 0px;
- padding-right: 0px;
-
- }
- .employee-table td:nth-child(3){
- font-size: 0.7rem;
- }
- .subform{
- width: 100%;
- }
- .form-content{
- padding: 6px;
- flex-direction: column;
- }
-}
-
diff --git a/Week1-Project/RishabhGupta011/create.html b/Week1-Project/RishabhGupta011/create.html
deleted file mode 100644
index 741d8ad..0000000
--- a/Week1-Project/RishabhGupta011/create.html
+++ /dev/null
@@ -1,208 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Create Employee
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RishabhGupta011/details.css b/Week1-Project/RishabhGupta011/details.css
deleted file mode 100644
index 08f927d..0000000
--- a/Week1-Project/RishabhGupta011/details.css
+++ /dev/null
@@ -1,257 +0,0 @@
-
-*{
- box-sizing: border-box;
- margin: 0px;
- padding: 0px;
- font-family: 'Roboto', sans-serif;
-}
-
-.header{
- height:60px;
-
- background-color: white;
- position: fixed;
- display: flex;
- width: 100%;
- z-index: 1;
- justify-content: space-between;
- box-shadow: 250px 1px 17px 1px rgba(184,173,173,1);
-
-}
-.logo-wrap{
- display: flex;
-}
-.logo{
- display: flex;
- padding: 12px 0 12px 12px;
-}
-.logo-img{
- width: 100%;
- max-width:40%;
-}
-.body-container{
- /* overflow: auto; */
- padding-top:45px;
- padding-left: 300px;
- padding-right: 20px;
-
-}
-.hamburger-btn{
- display: none;
- align-self: center;
- margin-left: 10px;
- cursor: pointer;
-}
-.sidebar{
- position:fixed;
- width: 250px;
- background-color: #212121;
- height: 100%;
- padding-top: 110px;
- left: 0;
-
-}
-.sidebar .item{
- padding: 15px;
- color: white;
-
-}
-.sidebar .item-active{
- background-color:#ffffff1a;
- border-left: 5px solid #f30000;
-}
-
-.sidebar .item:hover{
- background-color:#ffffff1a;
-
-}
-.section{
-
- width:100%;
- /* background-color:azure;*/
- /* height:400px;*/
- margin: 60px auto;
-
- overflow: auto;
- border-radius: 4px;
- display: flex;
- flex-direction: column;
- -webkit-box-shadow: 0px 1px 2px 1px #999;
- -moz-box-shadow: 0px 1px 2px 1px #999;
- box-shadow: 0px 1px 2px 1px #999;
-}
-.subform{
- width: 50%;
- padding: 20px;
-}
-.middle-nav{
- display: flex;
-}
-
-.nav-item{
- padding: 20px;
- margin-right:10px;
-
-}
-.nav-item:hover{
- cursor: pointer;
- background-color: beige;
-
-}
-
-.grp{
- display: flex;
- flex-direction: column;
- margin:20px;
-}
-.section-head-txt-wrap{
- background-color: #000033;
- padding: 15px 20px;
- /* text-align: center;*/
- font-size: 15px;
-
-}
-.section-head-txt{
- color: white;
-
-}
-.form-wrap{
- padding: 20px;
- background-color: #f4f5f5fc;
- display: flex;
- justify-content: space-around;
-
-}
-.form-head{
- font-weight: 600;
- text-align: center;
- /* background-color: yellow;*/
- border-bottom: 4px solid #78ce42;
- /* border-top: 5px solid #78ce42;*/
- align-self: center;
- padding: 5px;
- border-radius: 5px;
- margin-bottom: 20px;
-}
-.form-content{
- display: flex;
- justify-content: flex-start;
- flex-wrap: wrap;
- flex-direction: column;
- width: 50%;
- padding: 40px;
-}
-.form-content table{
- width: 100%;
- border-collapse: collapse;
-
-}
-.form-content table td{
- padding: 10px;
- border: 1px solid black;
-}
-.table-responsive{
- overflow-x: auto;
-}
-
-.table-wrap table{
- margin: 0px 30px;
- margin-top: 30px;
- width: 93%;
- text-align: center;
- border-collapse: collapse;
-
-}
-.table-wrap table td,th{
- padding: 10px;
- border: 1px solid grey;
-}
-.grp > label{
- font-size: 12px;
- padding-bottom: 10px;
-}
-.grp > input{
- height: 30px;
- padding-left: 2px;
-
-}
-.input-radio-wrap{
- height: 30px;
- display: flex;
- align-items: center;
-}
-
-
-.full-width{
- width: 100%;
-}
-
-
-a:link,a:hover,a:active,a:visited{
- text-decoration: none;
- color: black;
-}
-
-@media only screen and (min-width:961px){
- .sidebar{
- left:0px !important;
- }
-}
-
-@media only screen and (min-width: 600px) and (max-width:960px) {
- .sidebar{
-
- transition: left 1s;
- left:-250px;
- }
- .hamburger-btn{
- display: block;
- }
- .body-container{
- padding-left: 20px;
- }
- .header{
- box-shadow: 0px 1px 17px 1px rgba(184,173,173,1);
- }
- .form-content{
- width: 100%;
- }
- .form-wrap{
-
- padding: 6px;
- flex-direction: column;
- }
-
-}
-@media only screen and (min-width: 320px) and (max-width:599px) {
- .sidebar{
-
- transition: left 1s;
- left:-250px;
- }
- .hamburger-btn{
- display: block;
- }
- .body-container{
- padding-left: 20px;
- }
- .header{
- box-shadow: 0px 1px 17px 1px rgba(184,173,173,1);
- }
-
- .body-container,.form-wrap{
- padding-left: 0px;
- padding-right: 0px;
-
- }
-
- .form-content{
- width: 100%;
- }
- .form-wrap{
-
- padding: 6px;
- flex-direction: column;
- }
-}
-
diff --git a/Week1-Project/RishabhGupta011/details.html b/Week1-Project/RishabhGupta011/details.html
deleted file mode 100644
index 0e9ca1b..0000000
--- a/Week1-Project/RishabhGupta011/details.html
+++ /dev/null
@@ -1,186 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Employee Details
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RishabhGupta011/img/baseline_delete_black_18dp.png b/Week1-Project/RishabhGupta011/img/baseline_delete_black_18dp.png
deleted file mode 100644
index c92e6a5..0000000
Binary files a/Week1-Project/RishabhGupta011/img/baseline_delete_black_18dp.png and /dev/null differ
diff --git a/Week1-Project/RishabhGupta011/img/baseline_edit_black_18dp.png b/Week1-Project/RishabhGupta011/img/baseline_edit_black_18dp.png
deleted file mode 100644
index 9ec4db8..0000000
Binary files a/Week1-Project/RishabhGupta011/img/baseline_edit_black_18dp.png and /dev/null differ
diff --git a/Week1-Project/RishabhGupta011/img/baseline_menu_black_18dp.png b/Week1-Project/RishabhGupta011/img/baseline_menu_black_18dp.png
deleted file mode 100644
index 8b5e0b9..0000000
Binary files a/Week1-Project/RishabhGupta011/img/baseline_menu_black_18dp.png and /dev/null differ
diff --git a/Week1-Project/RishabhGupta011/img/login_banner.jpg b/Week1-Project/RishabhGupta011/img/login_banner.jpg
deleted file mode 100644
index 9ba4fcb..0000000
Binary files a/Week1-Project/RishabhGupta011/img/login_banner.jpg and /dev/null differ
diff --git a/Week1-Project/RishabhGupta011/img/logo.png b/Week1-Project/RishabhGupta011/img/logo.png
deleted file mode 100644
index 1d1dd57..0000000
Binary files a/Week1-Project/RishabhGupta011/img/logo.png and /dev/null differ
diff --git a/Week1-Project/RishabhGupta011/img/round_person_black_18dp.png b/Week1-Project/RishabhGupta011/img/round_person_black_18dp.png
deleted file mode 100644
index d07af25..0000000
Binary files a/Week1-Project/RishabhGupta011/img/round_person_black_18dp.png and /dev/null differ
diff --git a/Week1-Project/RishabhGupta011/index.html b/Week1-Project/RishabhGupta011/index.html
deleted file mode 100644
index 89488f1..0000000
--- a/Week1-Project/RishabhGupta011/index.html
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RishabhGupta011/list.css b/Week1-Project/RishabhGupta011/list.css
deleted file mode 100644
index 6457b15..0000000
--- a/Week1-Project/RishabhGupta011/list.css
+++ /dev/null
@@ -1,276 +0,0 @@
-*{
- box-sizing: border-box;
- margin: 0px;
- padding: 0px;
- font-family: 'Roboto', sans-serif;
-
-}
-
-.header{
- height:60px;
-
- background-color: white;
- position: fixed;
- display: flex;
- width: 100%;
- z-index: 1;
- justify-content: space-between;
- box-shadow: 250px 1px 17px 1px rgba(184,173,173,1);
-}
-.logo-wrap{
- display: flex;
-}
-.hamburger-btn{
- display: none;
- align-self: center;
- margin-left: 10px;
- cursor: pointer;
-}
-.logo{
- display: flex;
- padding: 12px 0 12px 12px;
-}
-.logo-img{
- width: 100%;
- max-width:40%;
-}
-.body-container{
- /* overflow: auto; */
- padding-top:45px;
- padding-left: 300px;
- padding-right: 20px;
-
-}
-.sidebar{
- position:fixed;
- width: 250px;
- background-color: #212121;
- height: 100%;
- padding-top: 110px;
- left: 0;
-
-}
-.sidebar .item{
- padding: 15px;
- color: white;
-
-}
-.sidebar .item-active{
- background-color:#ffffff1a;
- border-left: 5px solid #f30000;
-}
-
-.sidebar .item:hover{
- background-color:#ffffff1a;
-
-}
-.section{
-
- width:100%;
- /* background-color:azure;*/
- /* height:400px;*/
- margin: 60px auto;
-
- overflow: auto;
- border-radius: 4px;
- display: flex;
- flex-direction: column;
- -webkit-box-shadow: 0px 1px 2px 1px #999;
- -moz-box-shadow: 0px 1px 2px 1px #999;
- box-shadow: 0px 1px 2px 1px #999;
-}
-.subform{
- width: 50%;
- padding: 20px;
-}
-.middle-nav{
- display: flex;
-}
-
-.nav-item{
- padding: 20px;
- margin-right:10px;
-
-}
-.nav-item:hover{
- cursor: pointer;
- background-color: beige;
-}
-.grp{
- display: flex;
- flex-direction: column;
- margin:20px;
-}
-.section-head-txt-wrap{
- background-color: #000033;
- padding: 15px 20px;
- /* text-align: center;*/
- font-size: 15px;
-
-}
-.section-head-txt{
- color: white;
-
-}
-.form-wrap{
- padding: 20px;
- background-color: #f4f5f5fc;
- display: flex;
- flex-direction: column;
-
-
-}
-.form-head{
- text-align: center;
- background-color: yellow;
- align-self: center;
- padding: 10px;
- border-radius: 13px;
-}
-.form-content{
- /* display: flex;*/
- /* justify-content: space-around;*/
- /* flex-wrap: wrap;*/
- padding: 20px;
-}
-.grp > label{
- font-size: 12px;
- padding-bottom: 10px;
-}
-.grp > input{
- height: 30px;
-
-}
-
-.register-btn{
- padding: 10px;
- margin-top: 30px;
- width: 50%;
- align-self: center;
- background-color: #000033;
- border-color: #000033;
- color: white;
- border-radius: 2px;
-}
-
-.employee-table{
- width: 100%;
- background-color: white;
- border-collapse: collapse;
-
-}
-.employee-table tr:hover{
- cursor: pointer
-}
-.employee-table td{
- border-bottom: 5px solid #f4f5f5;
-}
-.employee-table td:first{
- text-align: center;
-}
-
-.profile-image{
- margin: 12px;
- display: inline-block;
- border-radius:50%;
- background-color: silver;
- padding: 20px;
-}
-
-.employee-name{
- font-size: 1.2rem;
- font-weight:1000;
- margin-bottom: 3px;
-}
-.employee-code{
- font-size:0.9rem;
-}
-.employee-card-basic{
- margin-right: 30px;
-
-}
-.employee-card-start{
- display: flex;
- align-items: center;
- margin-left:2%;;
-}
-.employee-card-mid{
- margin-right: 50px;
-}
-
-.employee-edit-icon,.employee-delete-icon{
- margin: 10px;
-}
-a:link,a:hover,a:active,a:visited{
- text-decoration: none;
- color: black;
-}
-
-@media only screen and (min-width:961px){
- .sidebar{
- left:0px !important;
- }
-}
-
-
-@media only screen and (min-width: 600px) and (max-width:960px) {
- .sidebar{
-
- transition: left 1s;
- left:-250px;
- }
- .hamburger-btn{
- display: block;
- }
- .body-container{
- padding-left: 20px;
- }
- .header{
- box-shadow: 0px 1px 17px 1px rgba(184,173,173,1);
- }
- .employee-table td:nth-child(4){
- display: none;
- }
-}
-@media only screen and (min-width: 320px) and (max-width:599px) {
- .sidebar{
-
- transition: left 1s;
- left:-250px;
- }
- .hamburger-btn{
- display: block;
- }
- .body-container{
- padding-left: 20px;
- }
- .header{
- box-shadow: 0px 1px 17px 1px rgba(184,173,173,1);
- }
- .employee-table td:nth-child(4){
- display: none;
- }
- .body-container,.form-wrap{
- padding-left: 0px;
- padding-right: 0px;
-
- }
- .employee-name{
- font-size: 0.8rem;
- }
- .employee-code{
- font-size: 0.7rem;
- }
- .employee-card-mid{
- font-size: 0.8rem;
- }
- .profile-image{
- padding: 2px;
- }
- .employee-table td:nth-child(3){
- font-size: 0.7rem;
- }
- .form-content{
- padding: 6px;
- }
-}
diff --git a/Week1-Project/RishabhGupta011/list.html b/Week1-Project/RishabhGupta011/list.html
deleted file mode 100644
index 1188acd..0000000
--- a/Week1-Project/RishabhGupta011/list.html
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Employees
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RishabhGupta011/login.css b/Week1-Project/RishabhGupta011/login.css
deleted file mode 100644
index 1ffa913..0000000
--- a/Week1-Project/RishabhGupta011/login.css
+++ /dev/null
@@ -1,177 +0,0 @@
-
-*{
- box-sizing: border-box;
- margin: 0px;
- padding: 0px;
-}
-
-body{
- background: linear-gradient(to bottom, rgba(179,220,237,1) 0%, rgba(41,184,229,1) 99%, rgba(188,224,238,1) 100%);
-}
-.header{
- height:60px;
- display: flex;
- justify-content: space-between;
-
-}
-.footer{
- display: flex;
- height: 60px;
- align-items: flex-end;
- justify-content: center;
- padding-bottom: 10px;
-}
-.logo{
- display: flex;
- padding: 12px 0 12px 12px;
-}
-.logo-img{
- width: 100%;
- max-width:40%;
-
-}
-.login-modal{
-
- border-radius: 3px;
- display: flex;
- flex-direction: row;
- justify-content: center;
- overflow: hidden;
- -webkit-box-shadow: 0px 1px 2px 1px #32166b;
- -moz-box-shadow: 0px 1px 2px 1px #32166b;
- box-shadow: 0px 1px 2px 1px #32166b;
-
-}
-.welcome-header{
- text-align: center;
- color: white;
- font-family: 'Lobster', cursive;
- padding: 20px;
- font-size: 3rem;
-
-}
-.login-banner{
- padding: 50px 10px;
-}
-.login-banner > img{
- width: 100%;
-}
-.login-modal div{
- background-color: #2b4ed0;
-
-}
-
-.login-modal-main{
- width: 450px;
- display: flex;
- flex-direction: column;
- border-left: 1px solid #6d6ddc;
- justify-content: center;
- padding: 30px;
-}
-.login-modal-wrap{
- display: flex;
- flex-direction: row;
- justify-content: center;
- margin-top: 50px;
-}
-.middle-nav{
- display: flex;
-}
-
-.nav-item{
- padding: 20px;
- margin-right:10px;
- font-family: 'Roboto', sans-serif;
-
-
-}
-.nav-item:hover{
- cursor: pointer;
- background-color: #f4f5f542;
-}
-.grp{
- display: flex;
- flex-direction: column;
- margin:20px;
-}
-.login-txt-wrap{
- background-color: #2b4ed0;
- padding: 20px 0px;
- text-align: center;
- font-size: 20px;
-
-}
-.login-txt{
- font-family: 'Roboto', sans-serif;
- color: white;
- font-size: 1.5rem;
-
-}
-.login-form-wrap{
- padding: 20px;
- background-color:#2b4ed0;
- font-family: 'Roboto', sans-serif;
-
-
-}
-.grp > label{
- font-size: 12px;
- font-weight:600;
- padding-bottom: 10px;
-}
-.grp input{
- height: 30px;
- width: 100%;
- padding-left: 28px;
-
-}
-.input-wrap{
- width: 100%;
- display: flex;
-
-}
-.input-icon{
- position: absolute;
- align-self: center;
- padding-left: 4px;
- font-size: 18px;
- color: #000033;
-}
-
-.login-btn{
- padding: 10px;
- margin-top: 30px;
- width: 50%;
- align-self: center;
- background-color: #000033;
- border-color: #000033;
- color: white;
- border-radius: 2px;
-}
-
-a:link,a:hover,a:active,a:visited{
- text-decoration: none;
- color: black;
-}
-
-@media only screen and (max-width:960px) {
- .login-modal{
- flex-direction: column;
- }
- .login-modal-main{
- width: 100%;
- border-left: none;
- border-top: 1px solid #6d6ddc;
- }
-}
-
-@media only screen and (min-width: 320px) and (max-width:599px) {
-
- .middle-nav .nav-item{
- display: none;
- }
-
-}
-
-
diff --git a/Week1-Project/RishabhGupta011/login.html b/Week1-Project/RishabhGupta011/login.html
deleted file mode 100644
index 8883f40..0000000
--- a/Week1-Project/RishabhGupta011/login.html
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RishabhGupta011/signup.css b/Week1-Project/RishabhGupta011/signup.css
deleted file mode 100644
index cdac69d..0000000
--- a/Week1-Project/RishabhGupta011/signup.css
+++ /dev/null
@@ -1,124 +0,0 @@
-
-*{
- box-sizing: border-box;
- margin: 0px;
- padding: 0px;
-}
-body{
- background: linear-gradient(to bottom, rgba(179,220,237,1) 0%, rgba(41,184,229,1) 99%, rgba(188,224,238,1) 100%);
-}
-.header{
- height:60px;
- display: flex;
- justify-content: space-between;
-
-}
-.logo{
- display: flex;
- padding: 12px 0 12px 12px;
-}
-.logo-img{
- width: 100%;
- max-width:40%;
-}
-.register-modal{
-
- width:400px;
- margin: 60px auto;
- border-radius: 3px;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- -webkit-box-shadow: 0px 1px 2px 1px #999;
- -moz-box-shadow: 0px 1px 2px 1px #999;
- box-shadow: 0px 1px 2px 1px #999;
-}
-.middle-nav{
- display: flex;
-}
-
-.nav-item{
- padding: 20px;
- margin-right:10px;
- font-family: 'Roboto', sans-serif;
-
-
-}
-.nav-item:hover{
- cursor: pointer;
- background-color: #f4f5f542;
-
-}
-.grp{
- display: flex;
- flex-direction: column;
- margin:20px;
-}
-.register-txt-wrap{
- background-color: #000033;
- padding: 20px 0px;
- text-align: center;
- font-size: 20px;
-
-}
-.register-txt{
- font-family: 'Roboto', sans-serif;
- color: white;
-
-}
-.register-form-wrap{
- padding: 20px;
- background-color: #f4f5f5fc;
- font-family: 'Roboto', sans-serif;
-
-
-}
-.grp > label{
- font-size: 12px;
- font-weight:600;
- padding-bottom: 10px;
-}
-.grp input{
- height: 30px;
- width: 100%;
- padding-left: 28px;
-}
-.input-wrap{
- width: 100%;
- display: flex;
-
-}
-.input-icon{
- position: absolute;
- align-self: center;
- padding-left: 4px;
- font-size: 18px;
- color: #000033;
-}
-
-.register-btn{
- padding: 10px;
- margin-top: 30px;
- width: 50%;
- align-self: center;
- background-color: #000033;
- border-color: #000033;
- color: white;
- border-radius: 2px;
-}
-
-a:link,a:hover,a:active,a:visited{
- text-decoration: none;
- color: black;
-}
-
-@media only screen and (min-width: 320px) and (max-width:599px) {
-
- .middle-nav .nav-item{
- display: none;
- }
- .register-modal{
- max-width: 100%;
- }
-}
-
diff --git a/Week1-Project/RishabhGupta011/signup.html b/Week1-Project/RishabhGupta011/signup.html
deleted file mode 100644
index aa7fb26..0000000
--- a/Week1-Project/RishabhGupta011/signup.html
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RishabhSinghal021/list.html b/Week1-Project/RishabhSinghal021/list.html
deleted file mode 100644
index 4da83c2..0000000
--- a/Week1-Project/RishabhSinghal021/list.html
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- List of Students
-
-
- Name
- ID
- Status
- Company
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RishabhSinghal021/login-css.css b/Week1-Project/RishabhSinghal021/login-css.css
deleted file mode 100644
index 3c02eb5..0000000
--- a/Week1-Project/RishabhSinghal021/login-css.css
+++ /dev/null
@@ -1,127 +0,0 @@
-body{
- margin: 0;
- opacity: 0.5;
- padding: 0;
- font-family: sans-serif;
- background: url(https://i2.wp.com/www.nustm.org/wp-content/uploads/2017/06/background-image-html.jpg?fit=1920%2C1200);
- background-position: center;
- opacity: 0.7;
-}
-
-.box{
- width:320px;
- height: 440px;
- background: #000;
- color: #fff;
- top: 59%;
- text-align: center;
- border-radius: 15px;
- left: 50%;
- position: absolute;
- opacity: 0.9;
- transform: translate(-50%,-50%);
- box-sizing: border-box;
-}
-.log-img{
- width: 100px;
- height: 100px;
- transform: translate(0%, -50%);
- border-radius: 50%;
-}
-.box input[type = "text"],.box input[type = "password"]{
- border: 0;
- background: none;
- display: block;
- cursor: pointer;
- margin: 20px auto;
- border-radius: 25px;
- text-align: center;
- border: 2px solid #3298db;
- padding: 17px 15px;
- outline: none;
- color: white;
- font-size:
- transition-duration: 1s;
-}
-.box input[type = "text"]:focus,.box input[type = "password"]:hover,.box input[type = "text"]:hover,.box input[type = "password"]:focus{
- width: 300px;
-}
-.box input[type = "submit"]{
- border: 1;
- background: none;
- display: block;
- margin: 20px auto;
- width: 100px;
- text-align: center;
- cursor: pointer;
- padding: 15px 15px;
- outline: none;
- color: white;
- border-radius: 25px;
- transition-duration: 0.5s;
-}
-.box input[type = "submit"]:hover,.box input[type = "submit"]:focus{
- font-size: 20px;
- width: 90px;
-}
-
-.sign-up{
- width: 480px;
- height: 500px;
- background: #000;
- color: #fff;
- top: 60%;
- border-radius: 19px;
- left: 50%;
- text-align: center;
- position: absolute;
- opacity: 0.9;
- transform: translate(-50%, -50%);
-}
-.sign-img{
- width: 120px;
- height: 120px;
- transform: translate(0%, -50%);
- border-radius: 50%;
-}
-.sign-up input[type = "text"],.sign-up input[type = "password"],.sign-up input[type = "date"]{
- width: 85px;
- border: 0;
- background: none;
- margin: 5px auto;
- text-align: center;
- color: white;
- padding: 2px 2px;
- border: 2px solid #3298db;
- border-radius: 50px;
- transition-duration: 0.5s;
- outline: none;
- cursor: pointer;
- position: relative;
-}
-.sign-up input[type = "text"]:hover,.sign-up input[type = "text"]:focus,.sign-up input[type = "password"]:hover,.sign-up input[type = "password"]:focus,.sign-up input[type = "date"]:hover,.sign-up input[type = "date"]:focus{
- width: 100px;
- height: 40px;
- font-size: 21px;
-}
-.algn{
- text-align: left;
- margin-left: 60px;
-}
-.algn input[type = "submit"]{
- text-align: center;
- margin-left: 45%;
- margin-top: 30px;
- border-radius: 25px;
- width: 70px;
- height: 30px;
- transition-duration: 1s;
- cursor: pointer;
- background: none;
- color: white
-}
-.algn input[type = "submit"]:hover,.box input[type = "submit"]:focus{
- font-size: 15px;
- width: 80px;
- height: 40px;
-}
\ No newline at end of file
diff --git a/Week1-Project/RishabhSinghal021/login.html b/Week1-Project/RishabhSinghal021/login.html
deleted file mode 100644
index b506d94..0000000
--- a/Week1-Project/RishabhSinghal021/login.html
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RishabhSinghal021/register.html b/Week1-Project/RishabhSinghal021/register.html
deleted file mode 100644
index 555615e..0000000
--- a/Week1-Project/RishabhSinghal021/register.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Registration Form
-
- Name :
- Employee id :
- 10th passing year :
- 10th percentage :
- 12th passing year :
- 12th percentage :
- Graduation :
- Course(graduation) :
- Graduation-marks :
- Post-graduation :
- Post-graduation-marks :
- Skills :
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RishabhSinghal021/show.html b/Week1-Project/RishabhSinghal021/show.html
deleted file mode 100644
index 57e3d94..0000000
--- a/Week1-Project/RishabhSinghal021/show.html
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RishabhSinghal021/sign-up.html b/Week1-Project/RishabhSinghal021/sign-up.html
deleted file mode 100644
index 681423f..0000000
--- a/Week1-Project/RishabhSinghal021/sign-up.html
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/RishabhSinghal021/style.css b/Week1-Project/RishabhSinghal021/style.css
deleted file mode 100644
index 99c3c1f..0000000
--- a/Week1-Project/RishabhSinghal021/style.css
+++ /dev/null
@@ -1,65 +0,0 @@
-*{
- margin: 0;
- padding: 0px;
- background: url(https://i2.wp.com/www.nustm.org/wp-content/uploads/2017/06/background-image-html.jpg?fit=1920%2C1200);
-}
-.header{
- position: absolute;
-}
-.navi{
- width: 100%;
- height: 10%;
- background-size: cover;
-}
-nav{
- width: 100%;
- height: 80px;
- background-color: #0005;
- line-height: 80px;
-}
-nav ul li{
- list-style: none;
- display: inline-block;
- transition: 0.8s all;
-}
-nav ul li a{
- color: white;
- text-align: center;
- padding: 20px;
- font-size: 120%;
-}
-nav ul{
- float:right;
- margin-right: 30px;
-}
-nav ul li:hover{
- background-color: black;
-}
-.body{
- margin-top: 5%;
- display: inline-block;
- padding-left: 25px;
-}
-.body input[type = "text"], input[type = "number"]{
- position: absolute;
- margin-left: 8%;
- border-radius: 12px;
- padding: 6px;
- width: 200px;
-}
-.body input[type = "text"]:hover, input[type = "number"]:hover{
- transform: scale(1.1,1.4);
- z-index: 1;
-}
-.body input[type="submit"]{
- width: 150px;
- padding: 10;
- border-radius: 12px;
- margin-left: 159px;
-}
-.foot{
- text-align: center;
- background-color: gainsboro;
- padding: 15px;
- width: 100%;
-}
\ No newline at end of file
diff --git a/Week1-Project/RishabhSinghal021/table.css b/Week1-Project/RishabhSinghal021/table.css
deleted file mode 100644
index e822217..0000000
--- a/Week1-Project/RishabhSinghal021/table.css
+++ /dev/null
@@ -1,20 +0,0 @@
-#mtable{
- border: 1px solid black;
- margin-left: 10%;
- margin-top: 30px;
- border-collapse: collapse;
- width: 80%;
- text-align: center;
-}
-th,td{
- padding: 10px 10px;
- text-align: center;
- border: 1px solid black;
-}
-th{
- background-color: blueviolet;
- color: white;
-}
-tr:nth-child(odd){
- background-color: cornflowerblue;
-}
\ No newline at end of file
diff --git a/Week1-Project/SahilSharma_INT020/assets/cybergroup-logo.png b/Week1-Project/SahilSharma_INT020/assets/cybergroup-logo.png
deleted file mode 100644
index e0453c9..0000000
Binary files a/Week1-Project/SahilSharma_INT020/assets/cybergroup-logo.png and /dev/null differ
diff --git a/Week1-Project/SahilSharma_INT020/create.html b/Week1-Project/SahilSharma_INT020/create.html
deleted file mode 100644
index cc711f4..0000000
--- a/Week1-Project/SahilSharma_INT020/create.html
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
-
-
-
-
-
- Cygrp - Sign up
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Week1-Project/SahilSharma_INT020/css/create.css b/Week1-Project/SahilSharma_INT020/css/create.css
deleted file mode 100644
index 9e419e0..0000000
--- a/Week1-Project/SahilSharma_INT020/css/create.css
+++ /dev/null
@@ -1,80 +0,0 @@
-/* Base styles */
-
-*{
- margin:0;
- padding: 0;
-}
-
-body{
- /* max-width: 480px; */
- margin: 20px 0 0;
- height: 100%;
-}
-
-
-a{
- text-decoration: none;
-}
-
-a:hover{
- text-decoration: none;
-}
-/* header */
-
-header {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
-}
-
-h1, p {
- margin: auto;
-}
-
-#clogo{
- border:0;
-}
-
-.container{
- margin-top: 100px;
- max-width: 700px;
-}
-
-
-/* Form */
-input {
- width: 100%;
-}
-
-.center{
- text-align: center;
-}
-
-.submit_btn{
- margin-bottom: 15px;
-}
-
-.p0{
- padding-right: 0;
-}
-
-a{
- /* text-decoration: none; */
- background-image: none;
-}
-
-table{
- margin: 30px 0 0 0;
-}
-
-section{
- padding-bottom: 60px;
-}
-
-footer{
- height: 30px;
- /* position: absolute; */
- bottom: 0;
- /* left: 0; */
- width: 100%;
-}
diff --git a/Week1-Project/SahilSharma_INT020/css/home.css b/Week1-Project/SahilSharma_INT020/css/home.css
deleted file mode 100644
index 13cd656..0000000
--- a/Week1-Project/SahilSharma_INT020/css/home.css
+++ /dev/null
@@ -1,77 +0,0 @@
-/* Base styles */
-
-*{
- margin:0;
- padding: 0;
-}
-
-body{
- /* max-width: 480px; */
- margin: 20px 0 0;
- height: 100%;
-}
-
-
-a{
- text-decoration: none;
-}
-
-a:hover{
- text-decoration: none;
-}
-/* header */
-
-header {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
-}
-
-h1, p {
- margin: auto;
-}
-
-#clogo{
- border:0;
-}
-
-.container{
- margin-top: 100px;
- max-width: 640px;
-}
-
-
-/* Form */
-
-.main_form input {
- width: 100%;
-}
-
-.center{
- text-align: center;
-}
-
-.submit_btn{
- margin-bottom: 15px;
-}
-
-a{
- /* text-decoration: none; */
- background-image: none;
-}
-
-table{
- margin: 30px 0 0 0;
-}
-
-section{
- padding-bottom: 60px;
-}
-
-footer{
- height: 30px;
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
-}
diff --git a/Week1-Project/SahilSharma_INT020/css/login.css b/Week1-Project/SahilSharma_INT020/css/login.css
deleted file mode 100644
index c4a4ecd..0000000
--- a/Week1-Project/SahilSharma_INT020/css/login.css
+++ /dev/null
@@ -1,65 +0,0 @@
-/* Base styles */
-
-*{
- margin:0;
- padding: 0;
-}
-
-body{
- /* max-width: 480px; */
- margin: 20px 20px 0;
-}
-
-
-/* header */
-
-header {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
-}
-
-h1, p {
- margin: auto;
-}
-
-#clogo{
- border:0;
- margin-bottom: 10px;
-}
-
-.container{
- margin-top: 50px;
- max-width: 430px;
-}
-
-
-/* Center */
-
-/* Form */
-
-a{
- text-decoration: none;
-}
-
-a:hover{
- text-decoration: none;
-}
-
-.main_form input {
- width: 100%;
-}
-
-.center{
- text-align: center;
-}
-
-.submit_btn{
- margin-bottom: 15px;
- width: 100%;
-}
-
-a{
- /* text-decoration: none; */
- background-image: none;
-}
diff --git a/Week1-Project/SahilSharma_INT020/css/paper.min.css b/Week1-Project/SahilSharma_INT020/css/paper.min.css
deleted file mode 100644
index 3e40876..0000000
--- a/Week1-Project/SahilSharma_INT020/css/paper.min.css
+++ /dev/null
@@ -1 +0,0 @@
-@import url("https://fonts.googleapis.com/css?family=Neucha|Patrick+Hand+SC");.text-primary{color:#41403e}.background-primary{background-color:#c1c0bd}.text-secondary{color:#0071de}.background-secondary{background-color:#deefff}.text-success{color:#86a361}.background-success{background-color:#d0dbc2}.text-warning{color:#ddcd45}.background-warning{background-color:#f5f0c6}.text-danger{color:#a7342d}.background-danger{background-color:#f0cbc9}.text-muted{color:#868e96}.background-muted{background-color:#e6e7e9}/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}.container{margin:0 auto;max-width:960px;position:relative;width:100%}@media only screen and (max-width: 992px){.container{width:85%}}@media only screen and (max-width: 480px){.container{width:90%}}.section{margin-bottom:2rem;margin-top:1rem;word-wrap:break-word}.section::after{color:#8f8d89;content:'~~~';display:block;font-size:1.5rem;position:relative;text-align:center}hr{border:0}hr::after{color:#8f8d89;content:'~~~';display:block;font-size:1.5rem;position:relative;text-align:center;top:-0.75rem}.paper{background-color:#fff;border:1px solid #c1c0bd;box-shadow:-1px 5px 35px -9px rgba(0,0,0,0.2);margin-bottom:1rem;margin-top:1rem;padding:2rem}@media only screen and (max-width: 480px){.paper{margin-bottom:0;margin-top:0;padding:1rem;width:100%}}.row{display:flex;flex-flow:row wrap;margin-bottom:1rem;margin-left:auto;margin-right:auto}.row.flex-right{justify-content:flex-end}.row.flex-center{justify-content:center}.row.flex-edges{justify-content:space-between}.row.flex-spaces{justify-content:space-around}.row.flex-top{align-items:flex-start}.row.flex-middle{align-items:center}.row.flex-bottom{align-items:flex-end}.col{padding:1rem}@media only screen and (max-width: 768px){.col{flex:0 0 100%;max-width:100%}}.col-fill{flex:1 1 0;width:auto}@media only screen and (min-width: 0){.col-1{flex:0 0 8.33333%;max-width:8.33333%}.col-2{flex:0 0 16.66667%;max-width:16.66667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333%;max-width:33.33333%}.col-5{flex:0 0 41.66667%;max-width:41.66667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333%;max-width:58.33333%}.col-8{flex:0 0 66.66667%;max-width:66.66667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333%;max-width:83.33333%}.col-11{flex:0 0 91.66667%;max-width:91.66667%}.col-12{flex:0 0 100%;max-width:100%}}@media only screen and (min-width: 480px){.xs-1{flex:0 0 8.33333%;max-width:8.33333%}.xs-2{flex:0 0 16.66667%;max-width:16.66667%}.xs-3{flex:0 0 25%;max-width:25%}.xs-4{flex:0 0 33.33333%;max-width:33.33333%}.xs-5{flex:0 0 41.66667%;max-width:41.66667%}.xs-6{flex:0 0 50%;max-width:50%}.xs-7{flex:0 0 58.33333%;max-width:58.33333%}.xs-8{flex:0 0 66.66667%;max-width:66.66667%}.xs-9{flex:0 0 75%;max-width:75%}.xs-10{flex:0 0 83.33333%;max-width:83.33333%}.xs-11{flex:0 0 91.66667%;max-width:91.66667%}.xs-12{flex:0 0 100%;max-width:100%}}@media only screen and (min-width: 768px){.sm-1{flex:0 0 8.33333%;max-width:8.33333%}.sm-2{flex:0 0 16.66667%;max-width:16.66667%}.sm-3{flex:0 0 25%;max-width:25%}.sm-4{flex:0 0 33.33333%;max-width:33.33333%}.sm-5{flex:0 0 41.66667%;max-width:41.66667%}.sm-6{flex:0 0 50%;max-width:50%}.sm-7{flex:0 0 58.33333%;max-width:58.33333%}.sm-8{flex:0 0 66.66667%;max-width:66.66667%}.sm-9{flex:0 0 75%;max-width:75%}.sm-10{flex:0 0 83.33333%;max-width:83.33333%}.sm-11{flex:0 0 91.66667%;max-width:91.66667%}.sm-12{flex:0 0 100%;max-width:100%}}@media only screen and (min-width: 992px){.md-1{flex:0 0 8.33333%;max-width:8.33333%}.md-2{flex:0 0 16.66667%;max-width:16.66667%}.md-3{flex:0 0 25%;max-width:25%}.md-4{flex:0 0 33.33333%;max-width:33.33333%}.md-5{flex:0 0 41.66667%;max-width:41.66667%}.md-6{flex:0 0 50%;max-width:50%}.md-7{flex:0 0 58.33333%;max-width:58.33333%}.md-8{flex:0 0 66.66667%;max-width:66.66667%}.md-9{flex:0 0 75%;max-width:75%}.md-10{flex:0 0 83.33333%;max-width:83.33333%}.md-11{flex:0 0 91.66667%;max-width:91.66667%}.md-12{flex:0 0 100%;max-width:100%}}@media only screen and (min-width: 1200px){.lg-1{flex:0 0 8.33333%;max-width:8.33333%}.lg-2{flex:0 0 16.66667%;max-width:16.66667%}.lg-3{flex:0 0 25%;max-width:25%}.lg-4{flex:0 0 33.33333%;max-width:33.33333%}.lg-5{flex:0 0 41.66667%;max-width:41.66667%}.lg-6{flex:0 0 50%;max-width:50%}.lg-7{flex:0 0 58.33333%;max-width:58.33333%}.lg-8{flex:0 0 66.66667%;max-width:66.66667%}.lg-9{flex:0 0 75%;max-width:75%}.lg-10{flex:0 0 83.33333%;max-width:83.33333%}.lg-11{flex:0 0 91.66667%;max-width:91.66667%}.lg-12{flex:0 0 100%;max-width:100%}}.align-top{align-self:flex-start}.align-middle{align-self:center}.align-bottom{align-self:flex-end}.container{margin:0 auto;max-width:960px;position:relative;width:100%}@media only screen and (max-width: 992px){.container{width:85%}}@media only screen and (max-width: 480px){.container{width:90%}}code{background-color:#f2f2f2;border-radius:3px;color:#0071de;font-size:80%;padding:2px 4px}kbd{background-color:#41403e;border-radius:3px;color:#fff;font-size:80%;padding:2px 4px}pre{background-color:#fafafa;border:1px solid #c1c0bd;border-radius:3px;color:#41403e;display:block;font-size:80%;line-height:1.5;overflow-x:auto;padding:1em;white-space:pre;word-break:break-all;word-wrap:break-word}pre code{background:transparent;color:inherit;display:block;font-size:inherit;padding:initial;white-space:pre}html{color:#41403e;font-family:"Neucha",sans-serif;font-size:20px}p,a,button,table,thead,tbody,th,tr,td,input,textarea,select,option{font-family:"Neucha",sans-serif}h1,h2,h3,h4,h5,h6{font-family:"Patrick Hand SC",sans-serif;font-weight:normal}h1{font-size:4rem}h2{font-size:3rem}h3{font-size:2rem}h4{font-size:1.5rem}h5{font-size:1rem}h6{font-size:0.8rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}img{border-bottom-left-radius:15px 255px;border-bottom-right-radius:225px 15px;border-top-left-radius:255px 15px;border-top-right-radius:15px 225px;border:2px solid #41403e;display:block;height:auto;max-width:100%}img.float-left{float:left;margin:1rem 1rem 1rem 0}img.float-right{float:right;margin:1rem 0 1rem 1rem}img.no-responsive{display:initial;height:initial;max-width:initial}img.no-border{border:0;border-radius:0}ol{list-style-type:decimal}ol ol{list-style-type:upper-alpha}ol ol ol{list-style-type:upper-roman}ol ol ol ol{list-style-type:lower-alpha}ol ol ol ol ol{list-style-type:lower-roman}ul{list-style:none;margin-left:0}ul li::before{content:"-"}ul li{text-indent:-7px}ul li .badge,ul li [popover-bottom]::after,ul li [popover-left]::after,ul li [popover-right]::after,ul li [popover-top]::after{text-indent:0}ul li::before{left:-7px;position:relative}ul ul li::before{content:"+"}ul ul ul li::before{content:"~"}ul ul ul ul li::before{content:"⤍"}ul ul ul ul ul li::before{content:"⁎"}ul.inline li{display:inline;margin-left:5px}table{box-sizing:border-box;max-width:100%;overflow-x:auto;width:100%}@media only screen and (max-width: 480px){table thead tr th{padding:2%}table tbody tr td{padding:2%}}table thead tr th{line-height:1.5;padding:8px;text-align:left;vertical-align:bottom}table tbody tr td{border-top:1px dashed #d9d9d8;line-height:1.5;padding:8px;vertical-align:top}table.table-hover tbody tr:hover{color:#0071de}table.table-alternating tbody tr:nth-of-type(even){color:#82807c}.border{border:2px solid #41403e}.border,.border-1,.child-borders>*:nth-child(6n+1){border-bottom-left-radius:15px 255px;border-bottom-right-radius:225px 15px;border-top-left-radius:255px 15px;border-top-right-radius:15px 225px}.border-2,.child-borders>*:nth-child(6n+2){border-bottom-left-radius:185px 25px;border-bottom-right-radius:20px 205px;border-top-left-radius:125px 25px;border-top-right-radius:10px 205px}.border-3,.child-borders>*:nth-child(6n+3){border-bottom-left-radius:225px 15px;border-bottom-right-radius:15px 255px;border-top-left-radius:15px 225px;border-top-right-radius:255px 15px}.border-4,.child-borders>*:nth-child(6n+4){border-bottom-left-radius:25px 115px;border-bottom-right-radius:155px 25px;border-top-left-radius:15px 225px;border-top-right-radius:25px 150px}.border-5,.child-borders>*:nth-child(6n+5){border-bottom-left-radius:20px 115px;border-bottom-right-radius:15px 105px;border-top-left-radius:250px 15px;border-top-right-radius:25px 80px}.border-6,.child-borders>*:nth-child(6n+6){border-bottom-left-radius:15px 225px;border-bottom-right-radius:20px 205px;border-top-left-radius:28px 125px;border-top-right-radius:100px 30px}.child-borders>*{border:2px solid #41403e}.border-white{border-color:#fff}.border-dotted{border-style:dotted}.border-dashed{border-style:dashed}.border-thick{border-width:5px}.border-primary{border-color:#41403e}.border-secondary{border-color:#0071de}.border-success{border-color:#86a361}.border-warning{border-color:#ddcd45}.border-danger{border-color:#a7342d}.border-muted{border-color:#868e96}.shadow{transition:all 235ms ease 0s;box-shadow:15px 28px 25px -18px rgba(0,0,0,0.2)}.shadow.shadow-large{transition:all 235ms ease 0s;box-shadow:20px 38px 34px -26px rgba(0,0,0,0.2)}.shadow.shadow-small{transition:all 235ms ease 0s;box-shadow:10px 19px 17px -13px rgba(0,0,0,0.2)}.shadow.shadow-hover:hover{-webkit-transform:translate3d(0, 2px, 0);transform:translate3d(0, 2px, 0);box-shadow:2px 8px 8px -5px rgba(0,0,0,0.3)}.child-shadows>*{transition:all 235ms ease 0s;box-shadow:15px 28px 25px -18px rgba(0,0,0,0.2)}.child-shadows-hover>*{transition:all 235ms ease 0s;box-shadow:15px 28px 25px -18px rgba(0,0,0,0.2)}.child-shadows-hover>*:hover{-webkit-transform:translate3d(0, 2px, 0);transform:translate3d(0, 2px, 0);box-shadow:2px 8px 8px -5px rgba(0,0,0,0.3)}.collapsible{display:flex;flex-direction:column}.collapsible:nth-of-type(1){border-top:1px solid #e6e7e9}.collapsible .collapsible-body{transition:all 235ms ease-in-out 0s;background-color:rgba(204,204,204,0.03);border-bottom:1px solid #e6e7e9;margin:0;max-height:0;opacity:0;overflow:hidden;padding:0 0.75rem}.collapsible input{display:none}.collapsible input:checked+label{color:#41403e}.collapsible input[id^='collapsible']:checked ~ div.collapsible-body{margin:0;max-height:960px;opacity:1;padding:0.75rem}.collapsible label{border-bottom:1px solid #e6e7e9;color:#41403e;display:inline-block;font-weight:600;margin:0 0 -1px;padding:0.75rem;text-align:center}.collapsible label:hover{color:#868e96;cursor:pointer}.alert{border-bottom-left-radius:15px 255px;border-bottom-right-radius:225px 15px;border-top-left-radius:255px 15px;border-top-right-radius:15px 225px;border:2px solid #41403e;margin-bottom:20px;padding:15px;width:100%}.alert.dismissible{transition:all 235ms ease-in-out 0s;display:flex;justify-content:space-between;max-height:48rem;overflow:hidden}.alert .btn-close{transition:all 235ms ease-in-out 0s;color:#5b5a57;cursor:pointer;margin-left:0.75rem}.alert .btn-close:hover,.alert .btn-close:active,.alert .btn-close:focus{color:#272625}.alert-primary{background-color:#c1c0bd;border-color:#41403e;color:#41403e}.alert-primary .btn-close{color:#5b5a57}.alert-primary .btn-close:hover,.alert-primary .btn-close:active,.alert-primary .btn-close:focus{color:#272625}.alert-secondary{background-color:#deefff;border-color:#0071de;color:#0071de}.alert-secondary .btn-close{color:#128bff}.alert-secondary .btn-close:hover,.alert-secondary .btn-close:active,.alert-secondary .btn-close:focus{color:#0057ab}.alert-success{background-color:#d0dbc2;border-color:#86a361;color:#86a361}.alert-success .btn-close{color:#9fb681}.alert-success .btn-close:hover,.alert-success .btn-close:active,.alert-success .btn-close:focus{color:#6c844d}.alert-warning{background-color:#f5f0c6;border-color:#ddcd45;color:#ddcd45}.alert-warning .btn-close{color:#e5d970}.alert-warning .btn-close:hover,.alert-warning .btn-close:active,.alert-warning .btn-close:focus{color:#cab925}.alert-danger{background-color:#f0cbc9;border-color:#a7342d;color:#a7342d}.alert-danger .btn-close{color:#cb453c}.alert-danger .btn-close:hover,.alert-danger .btn-close:active,.alert-danger .btn-close:focus{color:#7f2722}.alert-muted{background-color:#e6e7e9;border-color:#868e96;color:#868e96}.alert-muted .btn-close{color:#a1a8ae}.alert-muted .btn-close:hover,.alert-muted .btn-close:active,.alert-muted .btn-close:focus{color:#6c757d}.alert-state{display:none}.alert-state:checked+.dismissible{border-width:0;margin:0;max-height:0;opacity:0;padding-bottom:0;padding-top:0}article .article-title{font-size:3rem}article .article-meta{color:#868e96;font-size:15px}article .article-meta a{background-image:none;color:#41403e}article .article-meta a:hover{color:rgba(0,0,0,0.7)}article .text-lead{font-size:30px;line-height:1.3;margin:35px}article button:not(:first-of-type){margin-left:2rem}@media only screen and (max-width: 480px){article button:not(:first-of-type){margin-left:0}}article p{line-height:1.6}.badge{border-bottom-left-radius:15px 255px;border-bottom-right-radius:225px 15px;border-top-left-radius:255px 15px;border-top-right-radius:15px 225px;background-color:#868e96;border:2px solid #41403e;border-color:transparent;color:#fff;display:inline-block;font-size:75%;font-weight:700;line-height:1;padding:0.25em 0.4em;text-align:center;vertical-align:baseline;white-space:nowrap}.badge.primary{background-color:#41403e}.badge.secondary{background-color:#0071de}.badge.success{background-color:#86a361}.badge.warning{background-color:#ddcd45}.badge.danger{background-color:#a7342d}.badge.muted{background-color:#868e96}button,.paper-btn,[type='button']{border-bottom-left-radius:15px 255px;border-bottom-right-radius:225px 15px;border-top-left-radius:255px 15px;border-top-right-radius:15px 225px;transition:all 235ms ease 0s;box-shadow:15px 28px 25px -18px rgba(0,0,0,0.2);transition:all 235ms ease-in-out 0s;align-self:center;background:transparent;border:2px solid #41403e;color:#41403e;cursor:pointer;display:inline;font-size:1rem;outline:none;padding:0.75rem}@media only screen and (max-width: 520px){button,.paper-btn,[type='button']{display:inline-block;margin:0 auto;margin-bottom:1rem;text-align:center}}button.btn-large,.paper-btn.btn-large,[type='button'].btn-large{transition:all 235ms ease 0s;box-shadow:20px 38px 34px -26px rgba(0,0,0,0.2);font-size:2rem;padding:1rem}button.btn-small,.paper-btn.btn-small,[type='button'].btn-small{transition:all 235ms ease 0s;box-shadow:10px 19px 17px -13px rgba(0,0,0,0.2);font-size:0.75rem;padding:0.5rem}button.btn-block,.paper-btn.btn-block,[type='button'].btn-block{display:block;width:100%}button:hover,.paper-btn:hover,[type='button']:hover{-webkit-transform:translate3d(0, 2px, 0);transform:translate3d(0, 2px, 0);box-shadow:2px 8px 8px -5px rgba(0,0,0,0.3)}button:focus,.paper-btn:focus,[type='button']:focus{border:2px solid #0071de;box-shadow:2px 8px 4px -6px rgba(0,0,0,0.3)}button:active,.paper-btn:active,[type='button']:active{border-color:rgba(0,0,0,0.2);transition:none}button.disabled,button[disabled],.paper-btn.disabled,input.paper-btn[disabled],select.paper-btn[disabled],textarea.paper-btn[disabled],.paper-btn[disabled],[type='button'].disabled,input[type='button'][disabled],select[type='button'][disabled],textarea[type='button'][disabled],[type='button'][disabled]{cursor:not-allowed;opacity:0.5}a{background-image:linear-gradient(5deg, transparent 65%, #0071de 80%, transparent 90%),linear-gradient(165deg, transparent 5%, #0071de 15%, transparent 25%),linear-gradient(165deg, transparent 45%, #0071de 55%, transparent 65%),linear-gradient(15deg, transparent 25%, #0071de 35%, transparent 50%);background-position:0 90%;background-repeat:repeat-x;background-size:4px 3px;text-decoration:none}a:visited{color:#41403e;text-decoration:none}.alert-primary{background-color:#c1c0bd;border-color:#41403e;color:#41403e}button.btn-primary,.paper-btn.btn-primary,[type='button'].btn-primary{background-color:#c1c0bd;border-color:#41403e;color:#fff}button.btn-primary:hover:active,.paper-btn.btn-primary:hover:active,[type='button'].btn-primary:hover:active{background-color:#a8a6a3}.alert-secondary{background-color:#deefff;border-color:#0071de;color:#0071de}button.btn-secondary,.paper-btn.btn-secondary,[type='button'].btn-secondary{background-color:#deefff;border-color:#0071de;color:#41403e}button.btn-secondary:hover:active,.paper-btn.btn-secondary:hover:active,[type='button'].btn-secondary:hover:active{background-color:#abd6ff}.alert-success{background-color:#d0dbc2;border-color:#86a361;color:#86a361}button.btn-success,.paper-btn.btn-success,[type='button'].btn-success{background-color:#d0dbc2;border-color:#86a361;color:#41403e}button.btn-success:hover:active,.paper-btn.btn-success:hover:active,[type='button'].btn-success:hover:active{background-color:#b7c9a1}.alert-warning{background-color:#f5f0c6;border-color:#ddcd45;color:#ddcd45}button.btn-warning,.paper-btn.btn-warning,[type='button'].btn-warning{background-color:#f5f0c6;border-color:#ddcd45;color:#41403e}button.btn-warning:hover:active,.paper-btn.btn-warning:hover:active,[type='button'].btn-warning:hover:active{background-color:#ede49b}.alert-danger{background-color:#f0cbc9;border-color:#a7342d;color:#a7342d}button.btn-danger,.paper-btn.btn-danger,[type='button'].btn-danger{background-color:#f0cbc9;border-color:#a7342d;color:#41403e}button.btn-danger:hover:active,.paper-btn.btn-danger:hover:active,[type='button'].btn-danger:hover:active{background-color:#e6a5a1}.alert-muted{background-color:#e6e7e9;border-color:#868e96;color:#868e96}button.btn-muted,.paper-btn.btn-muted,[type='button'].btn-muted{background-color:#e6e7e9;border-color:#868e96;color:#41403e}button.btn-muted:hover:active,.paper-btn.btn-muted:hover:active,[type='button'].btn-muted:hover:active{background-color:#caced1}.card{transition:all 235ms ease 0s;box-shadow:15px 28px 25px -18px rgba(0,0,0,0.2);-webkit-backface-visibility:hidden;backface-visibility:hidden;border:2px solid #e6e7e9;display:flex;flex-direction:column;position:relative;will-change:transform;word-wrap:break-word}.card:hover{-webkit-transform:translate3d(0, 2px, 0);transform:translate3d(0, 2px, 0);box-shadow:2px 8px 8px -5px rgba(0,0,0,0.3)}.card .card-header,.card .card-footer{background-color:rgba(0,0,0,0.03);padding:0.75rem 1.25rem}.card .card-header{border-bottom:2px solid #e6e7e9}.card .card-footer{border-top:2px solid #e6e7e9}.card .card-body{flex:1 1 auto;padding:1.25rem}.card .card-body .card-title,.card .card-body h4{margin-bottom:0.5rem;margin-top:0}.card .card-body .card-subtitle,.card .card-body h5{color:#0071de;margin-bottom:0.5rem;margin-top:0}.card .card-body .card-text,.card .card-body p{margin-bottom:1rem;margin-top:0}.card .card-body .card-link+.card-link,.card .card-body a+a{margin-left:1.25rem}.card .image-top,.card .image-bottom,.card img{border:0;border-radius:0}input,select,textarea{background:transparent;border:2px solid #41403e;border-bottom-left-radius:15px 255px;border-bottom-right-radius:225px 15px;border-top-left-radius:255px 15px;border-top-right-radius:15px 225px;color:#41403e;display:block;font-size:1rem;outline:none;padding:0.5rem}input:focus,select:focus,textarea:focus{border:2px solid #0071de}.disabled,input.disabled,input[disabled],select.disabled,select[disabled],textarea.disabled,textarea[disabled]{cursor:not-allowed;opacity:0.5}.form-group{margin-bottom:1rem}.form-group>label,.form-group legend{display:inline-block;margin-bottom:0.5rem}.form-group .input-block{width:100%}.form-group textarea{max-height:90vh;max-width:100%}.form-group textarea.no-resize{resize:none}.form-group .paper-radio,.form-group .paper-check{cursor:pointer;display:block;margin-bottom:0.5rem}.form-group .paper-radio input,.form-group .paper-check input{border:0;display:none;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.form-group .paper-radio input+span,.form-group .paper-check input+span{display:block}.form-group .paper-radio input+span::before,.form-group .paper-check input+span::before{border:2px solid #41403e;content:'';display:inline-block;height:1rem;margin-right:0.75em;position:relative;vertical-align:-0.25em;width:1rem}.form-group .paper-radio input[type='radio']+span::before,.form-group .paper-check input[type='radio']+span::before{border-bottom-left-radius:0.7rem 1rem;border-bottom-right-radius:1rem 0.9rem;border-top-left-radius:1rem 1rem;border-top-right-radius:1rem 0.6rem}.form-group .paper-radio input[type='radio']:checked+span::before,.form-group .paper-check input[type='radio']:checked+span::before{background:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A//www.w3.org/2000/svg'%20viewBox%3D'0%200%20100%20100'%3E%3Cpath%20fill%3D'%230071de'%20d%3D'M49.346,46.341c-3.79-2.005,3.698-10.294,7.984-8.89%20c8.713,2.852,4.352,20.922-4.901,20.269c-4.684-0.33-12.616-7.405-14.38-11.818c-2.375-5.938,7.208-11.688,11.624-13.837%20c9.078-4.42,18.403-3.503,22.784,6.651c4.049,9.378,6.206,28.09-1.462,36.276c-7.091,7.567-24.673,2.277-32.357-1.079%20c-11.474-5.01-24.54-19.124-21.738-32.758c3.958-19.263,28.856-28.248,46.044-23.244c20.693,6.025,22.012,36.268,16.246,52.826%20c-5.267,15.118-17.03,26.26-33.603,21.938c-11.054-2.883-20.984-10.949-28.809-18.908C9.236,66.096,2.704,57.597,6.01,46.371%20c3.059-10.385,12.719-20.155,20.892-26.604C40.809,8.788,58.615,1.851,75.058,12.031c9.289,5.749,16.787,16.361,18.284,27.262%20c0.643,4.698,0.646,10.775-3.811,13.746'%3E%3C/path%3E%3C/svg%3E") left center no-repeat}.form-group .paper-radio input[type='checkbox']+span::before,.form-group .paper-check input[type='checkbox']+span::before{border-bottom-left-radius:15px 255px;border-bottom-right-radius:225px 15px;border-top-left-radius:255px 15px;border-top-right-radius:15px 225px}.form-group .paper-radio input[type='checkbox']:checked+span::before,.form-group .paper-check input[type='checkbox']:checked+span::before{background:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A//www.w3.org/2000/svg'%20viewBox%3D'0%200%20100%20100'%3E%3Cpath%20stroke%3D'%230071de'%20fill-opacity%3D'0'%20stroke-width%3D'16'%20d%3D'm13,62c0.61067,1.6%201.3045,2.3045%201.75717,2.75716c0.72683,0.72684%201.24283,1.24284%202.07617,2.07617c0.54133,0.54133%201.04116,1.06035%201.82833,1.82383c0.5781,0.5607%201.00502,0.96983%202.02633,1.74417c0.55877,0.42365%201.191,0.84034%201.884,1.284c1.16491,0.74577%201.59777,1.00147%202.5,1.55067c0.4692,0.28561%201.43689,0.86868%201.93067,1.16534c0.99711,0.59904%201.99667,1.19755%202.49283,1.49866c0.98501,0.59779%201.47073,0.89648%201.94733,1.2c1.3971,0.88972%201.83738,1.19736%202.7,1.7955c0.42201,0.29262%201.24022,0.87785%202.05583,1.41917c0.79531,0.52785%201.59376,1.0075%202.38,1.43867c0.74477,0.40842%201.45167,0.75802%202.37817,1.22517c0.76133,0.38387%201.54947,0.82848%202.40717,1.41084c0.7312,0.49647%201.49563,1.08231%202.27884,1.258c0.35564,0.07978%200.14721,-0.95518%200.35733,-1.86867c0.18092,-0.78651%200.98183,-1.2141%200.99983,-2.07867c0.02073,-0.99529%200.07916,-1.79945%200.42533,-2.56133c0.43607,-0.95973%200.53956,-1.66774%200.79617,-2.68183c0.18888,-0.74645%200.39764,-1.31168%200.7785,-2.6235c0.20865,-0.71867%200.41483,-1.48614%200.708,-2.28c0.15452,-0.41843%200.77356,-1.73138%201.348,-2.64133c0.30581,-0.48443%200.65045,-0.97043%201.0065,-1.4745c0.74776,-1.05863%201.1531,-1.60163%201.9375,-2.77084c0.40621,-0.60548%200.80272,-1.23513%201.2045,-1.8765c0.40757,-0.65062%200.81464,-1.31206%201.2315,-1.9755c0.41946,-0.66757%200.83374,-1.34258%201.73067,-2.648c0.44696,-0.65053%200.91436,-1.28356%201.386,-1.9095c0.46972,-0.6234%200.94725,-1.2364%201.422,-1.8465c0.94116,-1.20947%201.86168,-2.40844%202.30367,-3.0105c0.438,-0.59664%200.86246,-1.19396%201.27501,-1.7895c0.40743,-0.58816%200.80352,-1.17234%201.185,-1.7535c1.10526,-1.68381%201.44079,-2.23511%201.77633,-2.7705c0.32878,-0.52461%200.96306,-1.5459%201.27467,-2.04c0.60654,-0.96177%201.20782,-1.88193%201.51051,-2.325c0.59013,-0.86381%201.17888,-1.68032%201.46416,-2.075c0.5498,-0.76063%201.31747,-1.8231%201.77883,-2.4895c0.43918,-0.63437%200.85266,-1.25267%201.45717,-2.15717c0.59549,-0.891%200.96531,-1.46814%201.51466,-2.22933c0.58413,-0.80936%201.12566,-1.40253%201.83801,-2.12333c0.61304,-0.62031%200.45171,-1.48306%200.7045,-2.34733c0.25668,-0.87762%200.75447,-1.62502%201,-2.40983c0.25128,-0.8032%200.7633,-1.39453%201.33217,-2.25417c0.54528,-0.82398%200.73415,-1.6714%201.31516,-2.336c0.55639,-0.63644%201.38658,-1.22588%201.8595,-1.9c0.5082,-0.72441%200.78867,-1.4%201.60266,-1.56667l0.71184,-0.4905'%3E%3C/path%3E%3C/svg%3E") left center no-repeat}fieldset.form-group{border:0;padding:0}.modal{transition:opacity 235ms ease-in-out 0s;background:rgba(0,0,0,0.6);bottom:0;flex:1 1 auto;left:0;opacity:0;position:fixed;right:0;text-align:left;top:0;visibility:hidden;word-wrap:break-word;z-index:12}.modal-bg{bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.modal .modal-body{transition:all 235ms ease-in-out 0s;-webkit-backface-visibility:hidden;backface-visibility:hidden;background:#fff;border:2px solid #e6e7e9;left:50%;padding:1.25rem;position:absolute;top:0;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}@media only screen and (max-width: 768px){.modal .modal-body{box-sizing:border-box;width:90%}}.modal .btn-close{transition:all 235ms ease-in-out 0s;color:#c1c0bd;cursor:pointer;font-size:30px;height:1.1rem;position:absolute;right:1rem;text-decoration:none;top:1rem;width:1.1rem}.modal .btn-close:hover,.modal .btn-close:active,.modal .btn-close:focus{color:#41403e}.modal h4,.modal .modal-title{margin-bottom:0.5rem;margin-top:0}.modal h5,.modal .modal-subtitle{color:#0071de;margin-bottom:0.5rem;margin-top:0}.modal p,.modal .modal-text{margin-bottom:1rem;margin-top:0}.modal .modal-link+.modal-link,.modal a+a{margin-left:1.25rem}.modal .paper-btn{background:#fff;display:inline-block;text-decoration:none}.modal .modal-link,.modal a{background-image:linear-gradient(5deg, transparent 65%, #0071de 80%, transparent 90%),linear-gradient(165deg, transparent 5%, #0071de 15%, transparent 25%),linear-gradient(165deg, transparent 45%, #0071de 55%, transparent 65%),linear-gradient(15deg, transparent 25%, #0071de 35%, transparent 50%);background-position:0 90%;background-repeat:repeat-x;background-size:4px 3px;cursor:pointer;text-decoration:none}.modal .modal-link:hover,.modal .modal-link:focus,.modal .modal-link:visited,.modal a:hover,.modal a:focus,.modal a:visited{color:#41403e;text-decoration:none}.modal-state{display:none}.modal-state:checked+.modal{opacity:1;visibility:visible}.modal-state:checked+.modal .modal-body{top:50%}[popover-top],[popover-right],[popover-bottom],[popover-left]{margin:24px;position:relative}[popover-top]:hover::after,[popover-right]:hover::after,[popover-bottom]:hover::after,[popover-left]:hover::after{opacity:1;transition:opacity 0.2s ease-out}[popover-top]::after,[popover-right]::after,[popover-bottom]::after,[popover-left]::after{border-bottom-left-radius:15px 255px;border-bottom-right-radius:225px 15px;border-top-left-radius:255px 15px;border-top-right-radius:15px 225px;transition:opacity 235ms ease-in-out 0s;background:rgba(0,0,0,0.7);border:2px solid #41403e;color:#fff;font-size:0.7em;left:50%;min-width:80px;opacity:0;padding:4px 2px;position:absolute;text-align:center;top:-6px;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}[popover-left]::before{left:0;margin-left:-12px;top:50%;-webkit-transform:translateY(-50%) rotate(-90deg);transform:translateY(-50%) rotate(-90deg)}[popover-left]::after{content:attr(popover-left);left:0;margin-left:-8px;top:50%;-webkit-transform:translateX(-100%) translateY(-50%);transform:translateX(-100%) translateY(-50%)}[popover-right]::before{left:100%;margin-left:1px;top:50%;-webkit-transform:translatey(-50%) rotate(90deg);transform:translatey(-50%) rotate(90deg)}[popover-right]::after{content:attr(popover-right);left:100%;margin-left:8px;top:50%;-webkit-transform:translateX(0%) translateY(-50%);transform:translateX(0%) translateY(-50%)}[popover-top]::before{left:50%}[popover-top]::after{content:attr(popover-top);left:50%}[popover-bottom]::before{margin-top:8px;top:100%;-webkit-transform:translateX(-50%) translatey(-100%) rotate(-180deg);transform:translateX(-50%) translatey(-100%) rotate(-180deg)}[popover-bottom]::after{content:attr(popover-bottom);margin-top:8px;top:100%;-webkit-transform:translateX(-50%) translateY(0%);transform:translateX(-50%) translateY(0%)}.progress{border-bottom-left-radius:20px 115px;border-bottom-right-radius:15px 105px;border-top-left-radius:250px 15px;border-top-right-radius:25px 80px;border:2px solid #41403e;box-shadow:2px 8px 8px -5px rgba(0,0,0,0.3);height:1.2rem;overflow:hidden;width:100%}.progress .bar{border-bottom-left-radius:20px 115px;border-bottom-right-radius:15px 105px;border-top-left-radius:250px 15px;border-top-right-radius:25px 80px;transition:all 235ms ease-in-out 0s;background-color:#c1c0bd;border-right:2px solid #41403e;display:flex;flex-direction:column;font-size:0.6rem;height:100%;justify-content:center;text-align:center;width:0%}.progress .bar.striped{background:repeating-linear-gradient(45deg, #c1c0bd, #c1c0bd 0.25rem, #a8a6a3 0.25rem, #a8a6a3 0.5rem)}.progress .bar.primary{background-color:#c1c0bd}.progress .bar.primary.striped{background:repeating-linear-gradient(45deg, #c1c0bd, #c1c0bd 0.25rem, #a8a6a3 0.25rem, #a8a6a3 0.5rem)}.progress .bar.secondary{background-color:#deefff}.progress .bar.secondary.striped{background:repeating-linear-gradient(45deg, #deefff, #deefff 0.25rem, #abd6ff 0.25rem, #abd6ff 0.5rem)}.progress .bar.success{background-color:#d0dbc2}.progress .bar.success.striped{background:repeating-linear-gradient(45deg, #d0dbc2, #d0dbc2 0.25rem, #b7c9a1 0.25rem, #b7c9a1 0.5rem)}.progress .bar.warning{background-color:#f5f0c6}.progress .bar.warning.striped{background:repeating-linear-gradient(45deg, #f5f0c6, #f5f0c6 0.25rem, #ede49b 0.25rem, #ede49b 0.5rem)}.progress .bar.danger{background-color:#f0cbc9}.progress .bar.danger.striped{background:repeating-linear-gradient(45deg, #f0cbc9, #f0cbc9 0.25rem, #e6a5a1 0.25rem, #e6a5a1 0.5rem)}.progress .bar.muted{background-color:#e6e7e9}.progress .bar.muted.striped{background:repeating-linear-gradient(45deg, #e6e7e9, #e6e7e9 0.25rem, #caced1 0.25rem, #caced1 0.5rem)}.progress .bar.w-0{width:0%}.progress .bar.w-1{width:1%}.progress .bar.w-2{width:2%}.progress .bar.w-3{width:3%}.progress .bar.w-4{width:4%}.progress .bar.w-5{width:5%}.progress .bar.w-6{width:6%}.progress .bar.w-7{width:7%}.progress .bar.w-8{width:8%}.progress .bar.w-9{width:9%}.progress .bar.w-10{width:10%}.progress .bar.w-11{width:11%}.progress .bar.w-12{width:12%}.progress .bar.w-13{width:13%}.progress .bar.w-14{width:14%}.progress .bar.w-15{width:15%}.progress .bar.w-16{width:16%}.progress .bar.w-17{width:17%}.progress .bar.w-18{width:18%}.progress .bar.w-19{width:19%}.progress .bar.w-20{width:20%}.progress .bar.w-21{width:21%}.progress .bar.w-22{width:22%}.progress .bar.w-23{width:23%}.progress .bar.w-24{width:24%}.progress .bar.w-25{width:25%}.progress .bar.w-26{width:26%}.progress .bar.w-27{width:27%}.progress .bar.w-28{width:28%}.progress .bar.w-29{width:29%}.progress .bar.w-30{width:30%}.progress .bar.w-31{width:31%}.progress .bar.w-32{width:32%}.progress .bar.w-33{width:33%}.progress .bar.w-34{width:34%}.progress .bar.w-35{width:35%}.progress .bar.w-36{width:36%}.progress .bar.w-37{width:37%}.progress .bar.w-38{width:38%}.progress .bar.w-39{width:39%}.progress .bar.w-40{width:40%}.progress .bar.w-41{width:41%}.progress .bar.w-42{width:42%}.progress .bar.w-43{width:43%}.progress .bar.w-44{width:44%}.progress .bar.w-45{width:45%}.progress .bar.w-46{width:46%}.progress .bar.w-47{width:47%}.progress .bar.w-48{width:48%}.progress .bar.w-49{width:49%}.progress .bar.w-50{width:50%}.progress .bar.w-51{width:51%}.progress .bar.w-52{width:52%}.progress .bar.w-53{width:53%}.progress .bar.w-54{width:54%}.progress .bar.w-55{width:55%}.progress .bar.w-56{width:56%}.progress .bar.w-57{width:57%}.progress .bar.w-58{width:58%}.progress .bar.w-59{width:59%}.progress .bar.w-60{width:60%}.progress .bar.w-61{width:61%}.progress .bar.w-62{width:62%}.progress .bar.w-63{width:63%}.progress .bar.w-64{width:64%}.progress .bar.w-65{width:65%}.progress .bar.w-66{width:66%}.progress .bar.w-67{width:67%}.progress .bar.w-68{width:68%}.progress .bar.w-69{width:69%}.progress .bar.w-70{width:70%}.progress .bar.w-71{width:71%}.progress .bar.w-72{width:72%}.progress .bar.w-73{width:73%}.progress .bar.w-74{width:74%}.progress .bar.w-75{width:75%}.progress .bar.w-76{width:76%}.progress .bar.w-77{width:77%}.progress .bar.w-78{width:78%}.progress .bar.w-79{width:79%}.progress .bar.w-80{width:80%}.progress .bar.w-81{width:81%}.progress .bar.w-82{width:82%}.progress .bar.w-83{width:83%}.progress .bar.w-84{width:84%}.progress .bar.w-85{width:85%}.progress .bar.w-86{width:86%}.progress .bar.w-87{width:87%}.progress .bar.w-88{width:88%}.progress .bar.w-89{width:89%}.progress .bar.w-90{width:90%}.progress .bar.w-91{width:91%}.progress .bar.w-92{width:92%}.progress .bar.w-93{width:93%}.progress .bar.w-94{width:94%}.progress .bar.w-95{width:95%}.progress .bar.w-96{width:96%}.progress .bar.w-97{width:97%}.progress .bar.w-98{width:98%}.progress .bar.w-99{width:99%}.progress .bar.w-100{width:100%}.progress .bar.w-0,.progress .bar.w-100{border-right:0}.tabs .content{display:none;padding:0.75rem 0 0}.tabs input{display:none}.tabs input:checked+label{border-bottom:solid 3px #0071de;color:#41403e}.tabs input[id='tab1']:checked ~ div[id='content1']{display:block}.tabs input[id='tab2']:checked ~ div[id='content2']{display:block}.tabs input[id='tab3']:checked ~ div[id='content3']{display:block}.tabs input[id='tab4']:checked ~ div[id='content4']{display:block}.tabs input[id='tab5']:checked ~ div[id='content5']{display:block}.tabs label{color:#c1c0bd;display:inline-block;font-weight:600;margin:0 0 -1px;padding:0.75rem;text-align:center}.tabs label:hover{color:#868e96;cursor:pointer}.margin{margin:1rem}.margin-top{margin-top:1rem}.margin-top-large{margin-top:2rem}.margin-top-small{margin-top:.5rem}.margin-top-none{margin-top:0}.margin-right{margin-right:1rem}.margin-right-large{margin-right:2rem}.margin-right-small{margin-right:.5rem}.margin-right-none{margin-right:0}.margin-bottom{margin-bottom:1rem}.margin-bottom-large{margin-bottom:2rem}.margin-bottom-small{margin-bottom:.5rem}.margin-bottom-none{margin-bottom:0}.margin-left{margin-left:1rem}.margin-left-large{margin-left:2rem}.margin-left-small{margin-left:.5rem}.margin-left-none{margin-left:0}.margin-large{margin:2rem}.margin-small{margin:.5rem}.margin-none{margin:0}.padding{padding:1rem}.padding-top{padding-top:1rem}.padding-top-large{padding-top:2rem}.padding-top-small{padding-top:.5rem}.padding-top-none{padding-top:0}.padding-right{padding-right:1rem}.padding-right-large{padding-right:2rem}.padding-right-small{padding-right:.5rem}.padding-right-none{padding-right:0}.padding-bottom{padding-bottom:1rem}.padding-bottom-large{padding-bottom:2rem}.padding-bottom-small{padding-bottom:.5rem}.padding-bottom-none{padding-bottom:0}.padding-left{padding-left:1rem}.padding-left-large{padding-left:2rem}.padding-left-small{padding-left:.5rem}.padding-left-none{padding-left:0}.padding-large{padding:2rem}.padding-small{padding:.5rem}.padding-none{padding:0}nav{background-color:#fff;display:flex;padding:0.3rem;position:relative;width:100%;z-index:100}@media only screen and (max-width: 768px){nav{display:block}}nav .bar1,nav .bar2,nav .bar3{background-color:#41403e;border-bottom:5px solid #41403e;border-bottom-left-radius:15px 5px;border-bottom-right-radius:15px 3px;color:#41403e;margin:6px 0;transition:0.4s;width:2rem}nav .collapsible input[id^=collapsible]:checked+button .bar1{-webkit-transform:rotate(-45deg) translate(-9px, 7px);transform:rotate(-45deg) translate(-9px, 7px)}nav .collapsible input[id^=collapsible]:checked+button .bar2{opacity:0}nav .collapsible input[id^=collapsible]:checked+button .bar3{-webkit-transform:rotate(45deg) translate(-8px, -9px);transform:rotate(45deg) translate(-8px, -9px)}nav.split-nav{justify-content:space-between}nav.fixed{left:0;position:fixed;right:0;top:0}nav div{margin:0 1rem}nav ul.inline{margin-bottom:0;margin-top:10px;padding:0}nav ul.inline li{display:inline-block;margin:0 0.5rem}@media only screen and (max-width: 768px){nav ul.inline li{display:block;margin:1rem 0}}nav a{background-image:none;border-bottom:5px solid #41403e;border-bottom-left-radius:15px 3px;border-bottom-right-radius:15px 5px;color:#41403e;padding-bottom:0.1rem}nav a:hover{border-bottom:5px solid #c1c0bd}nav ul.inline li a{font-size:1.3rem}nav ul.inline li::before{content:''}@media only screen and (max-width: 992px){nav ul{text-align:center}}nav .nav-brand h1,nav .nav-brand h2,nav .nav-brand h3,nav .nav-brand h4,nav .nav-brand h5,nav .nav-brand h6{margin:0;margin-bottom:0.2rem}nav .collapsible input[id^=collapsible]:checked ~ div.collapsible-body{margin:0;max-height:960px;opacity:1;padding:0}nav .collapsible:nth-of-type(1),nav .collapsible .collapsible-body{border:0}@media only screen and (min-width: 769px){nav .collapsible:nth-of-type(1),nav .collapsible .collapsible-body{display:contents}}nav div.collapsible-body{padding:none}nav .collapsible label{border-bottom:0;padding:0}nav .collapsible>button{background-color:#fff;display:none;font-size:0.5rem;margin-right:1rem;padding:0.25rem;position:absolute;right:0;top:0.2rem}@media only screen and (max-width: 768px){nav .collapsible>button{display:block}}
diff --git a/Week1-Project/SahilSharma_INT020/home.html b/Week1-Project/SahilSharma_INT020/home.html
deleted file mode 100644
index a4bbcd4..0000000
--- a/Week1-Project/SahilSharma_INT020/home.html
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Home
-
-
-
-
-
-
-
-
-
-
-
-
- Check out the list!
- Here is the all the info that is on the database about some of the interns.
- Click on any name for more info.
-
-
-
-
- Sr No.
- Name
- ID
- College Name
-
-
-
-
- 1
- Sahil Sharma
- INT020
- Shiv Nadar University
-
-
- 2
- Taran Pal
- INT016
- IP University
-
-
- 3
- Karan Bhayana
- INT040
- Amity Unversity
-
-
- 4
- Kalpriksh Bisht
- INT010
- Shiv Nadar University
-
-
-
-
-
-
-
-
-
-
diff --git a/Week1-Project/SahilSharma_INT020/index.html b/Week1-Project/SahilSharma_INT020/index.html
deleted file mode 100644
index 2e9f1e2..0000000
--- a/Week1-Project/SahilSharma_INT020/index.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
- Cygrp - Login
-
-
-
-
- Welcome Back!
- Log in to discuss, check out the list, and manage other info about the interns.
-
-
-
-
-
- Need an account? Create your Cygrp account.
-
-
-
- Submit
-
-
-
-
-
-
diff --git a/Week1-Project/SahilSharma_INT020/js/index.js b/Week1-Project/SahilSharma_INT020/js/index.js
deleted file mode 100644
index aff795f..0000000
--- a/Week1-Project/SahilSharma_INT020/js/index.js
+++ /dev/null
@@ -1,34 +0,0 @@
-// Initialize Firebase
-var config = {
- apiKey: "AIzaSyD6vkSLmBDyDU2eZAUeEpXV-fWaOr_nDM0",
- authDomain: "cyber1.firebaseapp.com",
- databaseURL: "https://cyber1.firebaseio.com",
- projectId: "cyber1",
- storageBucket: "cyber1.appspot.com",
- messagingSenderId: "675887791659"
-};
-firebase.initializeApp(config);
-
-var email = document.getElementById('email');
-var password = document.getElementById('pass');
-
-document.getElementById("signup").addEventListener("click", function(event){
- event.preventDefault();
- console.log("works");
- var email = this.email;
- var password = this.password;
- firebase.auth().createUserWithEmailAndPassword(email, password).catch(function(error) {
- // Handle Errors here.
- var errorCode = error.code;
- var errorMessage = error.message;
- // [START_EXCLUDE]
- if (errorCode == 'auth/weak-password') {
- alert('The password is too weak.');
- } else {
- alert(errorMessage);
- }
- console.log(error);
- // [END_EXCLUDE]
- });
- // [END createwithemail]
- });
diff --git a/Week1-Project/SahilSharma_INT020/readme.md b/Week1-Project/SahilSharma_INT020/readme.md
deleted file mode 100644
index a971209..0000000
--- a/Week1-Project/SahilSharma_INT020/readme.md
+++ /dev/null
@@ -1 +0,0 @@
-Here is the netlify link : https://sahilp1.netlify.com/
\ No newline at end of file
diff --git a/Week1-Project/SahilSharma_INT020/signup.html b/Week1-Project/SahilSharma_INT020/signup.html
deleted file mode 100644
index b884cd9..0000000
--- a/Week1-Project/SahilSharma_INT020/signup.html
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
- Cygrp - Sign up
-
-
-
-
-
-
-
diff --git a/Week1-Project/ShivamRastogi437/README.MD b/Week1-Project/ShivamRastogi437/README.MD
deleted file mode 100644
index f4a8504..0000000
--- a/Week1-Project/ShivamRastogi437/README.MD
+++ /dev/null
@@ -1,2 +0,0 @@
-## Netlify Link:
-> https://shivama13.netlify.com/
\ No newline at end of file
diff --git a/Week1-Project/ShivamRastogi437/file1.html b/Week1-Project/ShivamRastogi437/file1.html
deleted file mode 100644
index 358fa67..0000000
--- a/Week1-Project/ShivamRastogi437/file1.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
- File 1
-
-
- Welcome to the first file
- Go back to your home
-
-
\ No newline at end of file
diff --git a/Week1-Project/ShivamRastogi437/file2.html b/Week1-Project/ShivamRastogi437/file2.html
deleted file mode 100644
index c84ed5b..0000000
--- a/Week1-Project/ShivamRastogi437/file2.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
- File 2
-
-
- Hello from the other file
- Go back to your home
-
-
\ No newline at end of file
diff --git a/Week1-Project/ShivamRastogi437/file3.html b/Week1-Project/ShivamRastogi437/file3.html
deleted file mode 100644
index ba6487f..0000000
--- a/Week1-Project/ShivamRastogi437/file3.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
- File 3
-
-
- Final destination
- Go back to your home
-
-
\ No newline at end of file
diff --git a/Week1-Project/ShivamRastogi437/index.html b/Week1-Project/ShivamRastogi437/index.html
deleted file mode 100644
index b666244..0000000
--- a/Week1-Project/ShivamRastogi437/index.html
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
- Linking files
-
-
-
- Open File 1
- Open File 2
- Open File 3
-
-
\ No newline at end of file
diff --git a/Week1-Project/ShivamSachdeva_006/CreatePageStyling.css b/Week1-Project/ShivamSachdeva_006/CreatePageStyling.css
deleted file mode 100644
index db0683f..0000000
--- a/Week1-Project/ShivamSachdeva_006/CreatePageStyling.css
+++ /dev/null
@@ -1,53 +0,0 @@
-body{
- background-image:url("background1.jpg");
- background-repeat: no-repeat;
- background-size: cover;
-}
-h2{
- text-align: center;
- font-family: Arial, Helvetica, sans-serif;
- font-size: 30px;
-}
-
-
-
-}
- p{
- text-align: center;
- font-size: 25px;
- font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
-}
-
-.footer {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- background-color: red;
- color: white;
- text-align: center;
- }
- .relative{
- border: 3px solid;
- position:absolute;
- border-radius: 14px;
- padding:10px;
- Width: 550px;
- left: 375px;
-
-
- }
- img{
- width:400px;
- height:100px;
-}
-.button {
- -webkit-transition-duration: 0.4s; /* Safari */
- transition-duration: 0.4s;
-
- }
- label{
- padding:10px;
- font-size: 25px;
-
- }
\ No newline at end of file
diff --git a/Week1-Project/ShivamSachdeva_006/CyberGroupLogo.png b/Week1-Project/ShivamSachdeva_006/CyberGroupLogo.png
deleted file mode 100644
index 7cfc009..0000000
Binary files a/Week1-Project/ShivamSachdeva_006/CyberGroupLogo.png and /dev/null differ
diff --git a/Week1-Project/ShivamSachdeva_006/ListPageStyling.css b/Week1-Project/ShivamSachdeva_006/ListPageStyling.css
deleted file mode 100644
index 129cb40..0000000
--- a/Week1-Project/ShivamSachdeva_006/ListPageStyling.css
+++ /dev/null
@@ -1,41 +0,0 @@
-body{
- background-image: url("background1.jpg");
- background-repeat: no-repeat;
- background-size: cover;
-}
-img{
- width:400px;
- height:100px;
-}
-h2{
-align:center;
-font-size: 40px;
-}
-.footer {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- background-color: red;
- color: white;
- text-align: center;
- }
-table,td,th{
- border: 1px solid;
- padding: 15px;
-
- }
-table{
- position: relative;
- align-content: center;
- margin: 100px;
- left:100px;
- }
-
- td,th{
- font-size: 30px;
- font-family: Georgia, 'Times New Roman', Times, serif;
- }
-
-
-
diff --git a/Week1-Project/ShivamSachdeva_006/LoginPageStyling.css b/Week1-Project/ShivamSachdeva_006/LoginPageStyling.css
deleted file mode 100644
index e838327..0000000
--- a/Week1-Project/ShivamSachdeva_006/LoginPageStyling.css
+++ /dev/null
@@ -1,53 +0,0 @@
-body{
- background-image:url("background1.jpg");
- background-repeat: no-repeat;
- background-size: cover;
-}
-h2{
- text-align: center;
- font-family: Arial, Helvetica, sans-serif;
- font-size: 30px;
-
-}
-
-
-
-}
- p{
- text-align: center;
- font-size: 25px;
- font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
-}
-
-.footer {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- background-color: red;
- color: white;
- text-align: center;
- }
- .relative{
- border: 3px solid;
- position:absolute;
- border-radius: 14px;
-
- padding:10px;
- Width: 550px;
- left: 375px;
-
- }
- img{
- width:400px;
- height:100px;
-}
-.button {
- -webkit-transition-duration: 0.4s; /* Safari */
- transition-duration: 0.4s;
-
- }
- label{
- padding:10px;
-
- }
\ No newline at end of file
diff --git a/Week1-Project/ShivamSachdeva_006/SignUp.html b/Week1-Project/ShivamSachdeva_006/SignUp.html
deleted file mode 100644
index 0edc63a..0000000
--- a/Week1-Project/ShivamSachdeva_006/SignUp.html
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- Sign up to become a cyber group member
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/ShivamSachdeva_006/SignUpStyling.css b/Week1-Project/ShivamSachdeva_006/SignUpStyling.css
deleted file mode 100644
index 45044c2..0000000
--- a/Week1-Project/ShivamSachdeva_006/SignUpStyling.css
+++ /dev/null
@@ -1,53 +0,0 @@
-body{
- background-image:url("background1.jpg");
- background-repeat: no-repeat;
- background-size: cover;
-}
-h2{
- text-align: center;
- font-family: Arial, Helvetica, sans-serif;
- font-size: 30px;
-}
-
-.content{
-
-}
- p{
- align: center;
-
- font-size: 10px;
- font-family: Impact, Haettenschweiler;
-}
-
-.footer {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- background-color: red;
- color: white;
- text-align: center;
- }
- .relative{
- border: 3px solid;
- position:absolute;
- border-radius: 14px;
-
- padding:10px;
- Width: 550px;
- left: 375px;
-
- }
- img{
- width:400px;
- height:100px;
-}
-.button {
- -webkit-transition-duration: 0.4s; /* Safari */
- transition-duration: 0.4s;
-
- }
- label{
- padding:10px;
-
- }
\ No newline at end of file
diff --git a/Week1-Project/ShivamSachdeva_006/background.jpg b/Week1-Project/ShivamSachdeva_006/background.jpg
deleted file mode 100644
index 0e10b7f..0000000
Binary files a/Week1-Project/ShivamSachdeva_006/background.jpg and /dev/null differ
diff --git a/Week1-Project/ShivamSachdeva_006/background1.jpg b/Week1-Project/ShivamSachdeva_006/background1.jpg
deleted file mode 100644
index 67c6ce4..0000000
Binary files a/Week1-Project/ShivamSachdeva_006/background1.jpg and /dev/null differ
diff --git a/Week1-Project/ShivamSachdeva_006/create.html b/Week1-Project/ShivamSachdeva_006/create.html
deleted file mode 100644
index 93842d3..0000000
--- a/Week1-Project/ShivamSachdeva_006/create.html
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Update your details
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/ShivamSachdeva_006/details.html b/Week1-Project/ShivamSachdeva_006/details.html
deleted file mode 100644
index 6975862..0000000
--- a/Week1-Project/ShivamSachdeva_006/details.html
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Shivam Sachdeva
-
-
-
-
- CygID
- Firstname
- Lastname
- Designation
-
-
- 001
- Shivam
- Sachdeva
- Intern
-
- Anusha Prasad
-
-
-
- CygID
- Firstname
- Lastname
- Designation
-
-
- 001
- Anusha
- Prasad
- Intern
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/ShivamSachdeva_006/index.html b/Week1-Project/ShivamSachdeva_006/index.html
deleted file mode 100644
index 4b6edb1..0000000
--- a/Week1-Project/ShivamSachdeva_006/index.html
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Sign Up
- Log In
- Create
- List
- Details
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/ShivamSachdeva_006/indexPage.css b/Week1-Project/ShivamSachdeva_006/indexPage.css
deleted file mode 100644
index 60c5d5a..0000000
--- a/Week1-Project/ShivamSachdeva_006/indexPage.css
+++ /dev/null
@@ -1,46 +0,0 @@
-body{
- background-image: url("background.jpg");
- background-repeat: no-repeat;
- background-size: cover;
-}
-
-
-nav{
- text-align: right;
- margin: 20px;
- padding: 20px;
- list-style: none;
- position: absolute;
- display:inline;
- font-size: 24px;
-}
-p{
- font-size:16px;
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
-
-}
-a{
- color: black;
-}
-
-a:hover{
- color: white;
- background: blue;
-}
-
-
-.footer {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- background-color: red;
- color: white;
- text-align: center;
- }
- img{
- width:400px;
- height:100px;
- }
-
-
diff --git a/Week1-Project/ShivamSachdeva_006/list.html b/Week1-Project/ShivamSachdeva_006/list.html
deleted file mode 100644
index e9961f9..0000000
--- a/Week1-Project/ShivamSachdeva_006/list.html
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- List of Records
-
-
-
- S.No.
- CygID
- Firstname
- Lastname
- Designation
-
-
- 1.
- 001
- Shivam
- Sachdeva
- Intern
-
-
- 2.
- 002
- Anusha
- Prasad
- Intern
-
-
- 3.
- 003
- Shruti
- Bhati
- Intern
-
-
- 4.
- 004
- Lagnesh
- Thakur
- Employee
-
-
- 5.
- 005
- Sonali
- Chawla
- Employee
-
-
- 6.
- 006
- Nikhil
- Tayal
- Intern
-
-
- 7.
- 007
- Vishal
- Ranjhan
- Employee
-
-
- 8.
- 008
- Karan
- Bhayana
- Intern
-
-
- 9.
- 009
- Arpit
- Dave
- Intern
-
-
- 10.
- 010
- Shivam
- Rastogi
- Employee
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/ShivamSachdeva_006/login.html b/Week1-Project/ShivamSachdeva_006/login.html
deleted file mode 100644
index fdbb41b..0000000
--- a/Week1-Project/ShivamSachdeva_006/login.html
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Login to your account
-
-
-
-
-
-
-
-
diff --git a/Week1-Project/Shreya009/cg.png b/Week1-Project/Shreya009/cg.png
deleted file mode 100644
index f3757f1..0000000
Binary files a/Week1-Project/Shreya009/cg.png and /dev/null differ
diff --git a/Week1-Project/Shreya009/cglogo.png b/Week1-Project/Shreya009/cglogo.png
deleted file mode 100644
index 374fd0a..0000000
Binary files a/Week1-Project/Shreya009/cglogo.png and /dev/null differ
diff --git a/Week1-Project/Shreya009/create.html b/Week1-Project/Shreya009/create.html
deleted file mode 100644
index 16d3c47..0000000
--- a/Week1-Project/Shreya009/create.html
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
- create
-
-
-
-
-
-
-
-
-
-   CREATE PROFILE  
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Shreya009/index.html b/Week1-Project/Shreya009/index.html
deleted file mode 100644
index 4cf3e68..0000000
--- a/Week1-Project/Shreya009/index.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
- login
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Shreya009/list.html b/Week1-Project/Shreya009/list.html
deleted file mode 100644
index 82de5a9..0000000
--- a/Week1-Project/Shreya009/list.html
+++ /dev/null
@@ -1,110 +0,0 @@
-
-
-
-
-
- list
-
-
-
-
-
-
-
-
-
-
-
  EMPLOYEE LIST  
-
-
-
- ID
- Name
- Designation
- Deparment
- Contact
-
-
- 191001
- Nick Fury
- Project Manager
- Strategy
- 9119119110
-
-
- 190002
- Steve Rogers
- Soldier
- Defence
- 1001001001
-
-
- 110093
- Natasha Romanoff
- Spying
- Assassination
- Contact
-
-
- 110094
- Bruce Banner
- Scientist
- Science
- 0010010010
-
-
- 110095
- Clint Barton
- Shooter
- Assassination
- 6666665555
-
-
- 110096
- Anthony Stark
- Scientist
- Engineering
- 4444333221
-
-
- 110097
- Thor Odinson
- God
- Thunder
- 0000000000
-
-
- 110098
- Wanda Maximoff
- Manupulation
- Psychology
- 8888777766
-
-
- 110099
- Pietro Maximoff
- Running
- Speed
- 8888777766
-
-
- 110100
- Thanos Titan
- Power
- Destruction
- 6660006660
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Shreya009/login.html b/Week1-Project/Shreya009/login.html
deleted file mode 100644
index 4cf3e68..0000000
--- a/Week1-Project/Shreya009/login.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
- login
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Shreya009/retreive91.html b/Week1-Project/Shreya009/retreive91.html
deleted file mode 100644
index 960cfab..0000000
--- a/Week1-Project/Shreya009/retreive91.html
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
- create
-
-
-
-
-
-
-
-
-
-   NICK FURY PROFILE  
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-2 years with CIA
-4 years with Area 51
-7 years with SHIELD
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Shreya009/signup.html b/Week1-Project/Shreya009/signup.html
deleted file mode 100644
index 8744eb2..0000000
--- a/Week1-Project/Shreya009/signup.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
- signup
-
-
-
-
-
-
-
-
-
-
-   WELCOME TO CYBER GROUP!  
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Shreya009/style.css b/Week1-Project/Shreya009/style.css
deleted file mode 100644
index 240221d..0000000
--- a/Week1-Project/Shreya009/style.css
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-.text
- {
- font-family:helvetica;
- }
-form
- {
- text-align:center;
- align:center:
- }
-h3
- {
- text-align:center;
- font-family:helvetica;
- color:navy;
- padding:20px;
-
- }
-.header
- {
- background-color:white;
- padding:10px;
- text-align:right;
- font-size:12px
- }
-.footer
- {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- background-color:rgb(255,69,0,0.85);
- color: white;
- text-align: center;
- padding: adding:10px;
- font-size:10px;
- }
-.formmid
- {
- width:26%;
- }
-.formname
- {
- width:12.8%;
- }
-table,th,td
- {
- text-align:center;
- border: 0.5px solid navy;
- }
-table
- {
- border-collapse:collapse;
- }
-th,td
- {
- width:10vw;
- height:5vh;
- }
diff --git a/Week1-Project/SrishtyRawat_027/create_page.html b/Week1-Project/SrishtyRawat_027/create_page.html
deleted file mode 100644
index c340c11..0000000
--- a/Week1-Project/SrishtyRawat_027/create_page.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Details Page
-
-
-
-
-
Enter the following credentials:
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/SrishtyRawat_027/create_page.txt.txt b/Week1-Project/SrishtyRawat_027/create_page.txt.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Week1-Project/SrishtyRawat_027/list_page.html b/Week1-Project/SrishtyRawat_027/list_page.html
deleted file mode 100644
index 33fef39..0000000
--- a/Week1-Project/SrishtyRawat_027/list_page.html
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
- Employee Log
-
-
-
-
-
-
- S.No.
- CGI Code
- First Name
- Last Name
- Designation
-
-
- 1
- Int001
- Alexa
- Puth
- Software developer
-
-
-
- 2
- Int004
- Andrew
- Foremann
- Consultant-1
-
-
-
- 3
- Int007
- Beetles
- Band
- IT
-
-
-
- 4
- Int010
- Lisa
- Cuddy
- Consultant-2
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/SrishtyRawat_027/list_page.txt.txt b/Week1-Project/SrishtyRawat_027/list_page.txt.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Week1-Project/SrishtyRawat_027/login.html b/Week1-Project/SrishtyRawat_027/login.html
deleted file mode 100644
index ba58034..0000000
--- a/Week1-Project/SrishtyRawat_027/login.html
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
Login_Page
-
-
-
-
Hello User!
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/SrishtyRawat_027/login.txt.txt b/Week1-Project/SrishtyRawat_027/login.txt.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Week1-Project/SrishtyRawat_027/retrieve.html b/Week1-Project/SrishtyRawat_027/retrieve.html
deleted file mode 100644
index 3d7e084..0000000
--- a/Week1-Project/SrishtyRawat_027/retrieve.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
Employee Details:
-
-
-
-
-
User details
-
- First Name: Alexa
- Last Name: Andrew
- Email ID: alexa.andrew@cygrp.com
- Designation: Consultant-1
- CGI Code: INT001
- Highest Qualification: M.Tech.
- Work Experience: 4
- Previous Organisation: ABC organisation
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/SrishtyRawat_027/retrieve.txt.txt b/Week1-Project/SrishtyRawat_027/retrieve.txt.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Week1-Project/SrishtyRawat_027/sign_up.html b/Week1-Project/SrishtyRawat_027/sign_up.html
deleted file mode 100644
index 5d601c8..0000000
--- a/Week1-Project/SrishtyRawat_027/sign_up.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
Registration Page
-
-
-
-
Welcome to Cyber Group
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/SrishtyRawat_027/sign_up.txt.txt b/Week1-Project/SrishtyRawat_027/sign_up.txt.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Week1-Project/SrishtyRawat_027/stylesheet.css b/Week1-Project/SrishtyRawat_027/stylesheet.css
deleted file mode 100644
index 844cdec..0000000
--- a/Week1-Project/SrishtyRawat_027/stylesheet.css
+++ /dev/null
@@ -1,77 +0,0 @@
-.main_area{
- background-color:#ffffff;
- position: relative;
- left: 25%;
- top: 50%;
- width: 40%;
- border: 2px solid #A9A9A9;
- }
-input[type=text], input[type=password], input[type=number], input[type=email] {
- width: 80%;
- padding: 15px;
- margin: 5px 0 22px 0;
- display: inline-block;
- border: none;
- background: #f1f1f1;
-}
-input[type=text]:focus, input[type=password]:focus, input[type=number]:focus, input[type=email]:focus {
- background-color: #ddd;
- outline: none;
-}
-
-.button {
- background-color: #0000FF;
- color: white;
- padding: 14px 20px;
- margin: 8px 20px;
- border: none;
- cursor: pointer;
- width: 20%;
- opacity: 0.9;
-}
-button:hover {
- opacity:1;
-}
-.container {
- padding: 16px;
-}
-@media screen and (max-width: 300px) {
- .button, .table_str {
- width: 10%;
- }
-
- .container{
- height:auto;
- }
-}
-h3{
- left: 25%;
- position: relative;
-
-}
-
-th, td {
- border: 1px solid black;
-}
-.table_str{
- background-color:#ffffff;
- position: relative;
- left: 35%;
- top: 150px;
- width:30%;
- border: 2px solid black;
-}
-table{
- position: relative;
-}
-label{
- font-weight:bold;
-}
-.retrieve{
- background-color:#ffffff;
- position: relative;
- left: 25%;
- top: 50%;
- width: 22%;
- border: 1.5px solid black;
-}
diff --git a/Week1-Project/Taarak Dhingra INT008/README.md b/Week1-Project/Taarak Dhingra INT008/README.md
deleted file mode 100644
index 31e7338..0000000
--- a/Week1-Project/Taarak Dhingra INT008/README.md
+++ /dev/null
@@ -1 +0,0 @@
-# week1-project-frontend
\ No newline at end of file
diff --git a/Week1-Project/Taarak Dhingra INT008/detailpage.html b/Week1-Project/Taarak Dhingra INT008/detailpage.html
deleted file mode 100644
index ebb1735..0000000
--- a/Week1-Project/Taarak Dhingra INT008/detailpage.html
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
INFORMATION PAGE
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Taarak Dhingra INT008/detailstyle.css b/Week1-Project/Taarak Dhingra INT008/detailstyle.css
deleted file mode 100644
index a9652ab..0000000
--- a/Week1-Project/Taarak Dhingra INT008/detailstyle.css
+++ /dev/null
@@ -1,90 +0,0 @@
-.heading{
-/*margin:20px;*/
-background:rgba(0,0,0,0.4);
-
-height:100px;
-
-}
-.heading .fornavigation ul li{
-display:inline-block;
-padding:25px;
-font-size:25px;
-font-weight: bold;
-
-
-
-}
-.forright
- { float:right; width:30%; clear:right }
-
-
-a{
- color:#ffffff;
- text-decoration:none;
-
-}
-
- .infostyle{
-
- margin: 20px;
- /*height: 50px;*/
- font-size: 25px;
- color:#FFFFFF;
-
-
-
-
- }
-
- input{color:#FFFFFF;
- font-size: 15px;
- /*border-color:transparent;*/
- background: transparent;
- border-bottom:2px solid #FFFFFF;
- }
-
- .formdetails{
-
- width:500px;
- margin-left: 20px;
-
- }
-
- .detailbutton{
-
- margin-top: 50px;
- margin-left: 150px;
- background: linear-gradient(#0033cc, #33ccff);
- width:63px;
-
- }
-
- .detailclass{
-
- /*background: url("http://www.cerc-ug.org/pic/b/62/629461_innovation-wallpaper-hd.jpg");*/
- background:url("https://i.pinimg.com/originals/08/a7/ab/08a7ab130881d2fb60585dc37744e04b.jpg");
-
- background-repeat:no-repeat;
- background-size:cover;
- }
-
-
- .foot{
-
-
- background-color: #333;
-
-
- position: relative;
- top:500px;
- bottom:0px;
-
- }
-
- #fit3
- {
- height:25px;
- background-color:#614051;
- }
-
-
diff --git a/Week1-Project/Taarak Dhingra INT008/emplist.css b/Week1-Project/Taarak Dhingra INT008/emplist.css
deleted file mode 100644
index 59edbec..0000000
--- a/Week1-Project/Taarak Dhingra INT008/emplist.css
+++ /dev/null
@@ -1,65 +0,0 @@
-
-.heading{
-/*margin:20px;*/
-background:rgba(0,0,0,0.4);
-
-height:100px;
-
-}
-.heading .fornavigation ul li{
-display:inline-block;
-padding:25px;
-font-size:25px;
-font-weight: bold;}
-
-table
-{
-
- border-collapse: collapse;
-}
-
-table td, table th {
- border: 4px solid black;
- padding: 15px;
-}
-
-.formstyle{
-
-
- margin-top: 100px;
-}
-
-body{
- background: url("https://i.pinimg.com/originals/dd/6d/08/dd6d080ac1f635254ea2e1be3fad2794.jpg");
- background-repeat:no-repeat;
-background-size:cover;
-}
-
-
-.foot{
-
-
- background-color: #333;
-
- margin-top: 100px;
- top:300px;
- bottom: 0px;
-
- }
-
- #fit3
- {
- height:25px;
- background-color:#614051;
- }
-
-
- .forright
- { float:right; width:30%; clear:right }
-
-
-a{
- color:#ffffff;
- text-decoration:none;
- font-weight: bold;
-}
diff --git a/Week1-Project/Taarak Dhingra INT008/employeedetail.html b/Week1-Project/Taarak Dhingra INT008/employeedetail.html
deleted file mode 100644
index f56ba56..0000000
--- a/Week1-Project/Taarak Dhingra INT008/employeedetail.html
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
DETAILS OF EMPLOYEE
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
TAARAK DETAILS:
-
-
-
-
- EMPLOYEE ID: INT008
-
-
-
- JOINING DATE: 7th JANUARY,2019
-
-
- PHONE NO: 9898765634
-
-
- EMAIL ID:tarak1996@gmail.com
-
-
- DESIGNATION:INTERN
-
-
- CURRENT PROJECT:WEBSITE DEV
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Taarak Dhingra INT008/employeedetaildeco.css b/Week1-Project/Taarak Dhingra INT008/employeedetaildeco.css
deleted file mode 100644
index c982bf5..0000000
--- a/Week1-Project/Taarak Dhingra INT008/employeedetaildeco.css
+++ /dev/null
@@ -1,69 +0,0 @@
-.heading{
-/*margin:20px;*/
-background:rgba(0,0,0,0.4);
-
-height:100px;
-
-}
-.heading .fornavigation ul li{
-display:inline-block;
-padding:25px;
-font-size:25px;
-font-weight: bold;}
-
-.forright
- { float:right; width:30%; clear:right }
-
-
-a{
- color:#ffffff;
- text-decoration:none;
-
-}
-
-.foot{
-
-
- background-color: #333;
- font-size:30px;
- font-weight: bold;
- color: #000000;
- margin-top: 67px;
- top:300px;
- bottom: 0px;
- text-align: center;
-
-
- }
-
- #fit3
- {
- height:25px;
- background-color:#614051;
- }
-.formstyle{
-border-radius: 10px;
- width: 300px;
- font-size: 15px;
- padding: 3px;
- margin-top: 50px;
- border: 5px solid red;
- background-image: linear-gradient(red, yellow);
- margin-left: 38%;
- /*background-color: #88ff4d;*/}
-
- .detailstyle{
-border-radius: 25px;
- font-size: 20px;
- padding: 10px;
- margin-top: 50px;
- border: 5px solid red;
- background:#FFFFFF;
- width: 40%;
- text-align: center;
- display: inline-block;
- margin-left: 3%;
- }
-
-
-body{background-color: #000000;}
\ No newline at end of file
diff --git a/Week1-Project/Taarak Dhingra INT008/employeelist.html b/Week1-Project/Taarak Dhingra INT008/employeelist.html
deleted file mode 100644
index c667759..0000000
--- a/Week1-Project/Taarak Dhingra INT008/employeelist.html
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
-
- EMPLOYEE LIST
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Taarak Dhingra INT008/index.html b/Week1-Project/Taarak Dhingra INT008/index.html
deleted file mode 100644
index 7fac22b..0000000
--- a/Week1-Project/Taarak Dhingra INT008/index.html
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- LINK FOR ALL PAGES
-
-
-
-
-
- SIGNUP
- LOGIN
- CREATE
- EMPLOYEE LIST
- DETAIL OF SELECTED EMPLOYE
-
-
-
\ No newline at end of file
diff --git a/Week1-Project/Taarak Dhingra INT008/login.html b/Week1-Project/Taarak Dhingra INT008/login.html
deleted file mode 100644
index 2ff6473..0000000
--- a/Week1-Project/Taarak Dhingra INT008/login.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-LOGIN PORTAL
-
-
-
-
-
-
-
-
-