Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Binary file not shown.
Binary file not shown.
25 changes: 25 additions & 0 deletions Week3-Project/BhawnaSharma003/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
/build/
1 change: 1 addition & 0 deletions Week3-Project/BhawnaSharma003/.gitignore.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
spring-boot-rest-2/target/
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip
Binary file added Week3-Project/BhawnaSharma003/Background12.mp4
Binary file not shown.
Binary file added Week3-Project/BhawnaSharma003/Background2.mp4
Binary file not shown.
70 changes: 70 additions & 0 deletions Week3-Project/BhawnaSharma003/CyberGroup.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
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);
}
19 changes: 19 additions & 0 deletions Week3-Project/BhawnaSharma003/CyberGroup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Cyber Group</title>
<link rel="stylesheet" href="CyberGroup.css">
</head>
<body>

<ul id="info">
<li><a href="index.html">Login</a></li>
<li><a href="SignUpPage.html">Sign Up</a></li>
<li><a href="List.html">Our Team</a></li>
<li><a href="EnterDetails.html">Your Details</a></li>


</ul>
</body>
</html>
14 changes: 14 additions & 0 deletions Week3-Project/BhawnaSharma003/Database.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
--DATABASE CREATION
CREATE DATABASE EMPLOYEEJAVA;

--TABLE CREATION
CREATE TABLE DETAILS (ID INT IDENTITY(1,1),USERNAME VARCHAR(200),PASS VARCHAR(50));

--VALUES IN THE TABLE
INSERT INTO DETAILS VALUES ('BHAWNA123','BHAWNA123');
INSERT INTO DETAILS VALUES ('AARUSHI22','AARUSHI22');
INSERT INTO DETAILS VALUES ('ISHA11','ISHA11');
INSERT INTO DETAILS VALUES ('SWAINI22','SWAINI22');

--TABLE
SELECT * FROM DETAILS;
182 changes: 182 additions & 0 deletions Week3-Project/BhawnaSharma003/EnterDetails.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,182 @@
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);

}
.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);

}
.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);

}

.loginBox p{
margin:0;
padding: 0;
font-weight: bold;
color:#fff;

}
.loginBox2 p{
margin:0;
padding: 0;
font-weight: bold;
color:#fff;

}
.loginBox1 p{
margin:0;
padding: 0;
font-weight: bold;
color:#fff;

}
.loginBox input{
width: 100%;
margin-bottom: 20px;

}
.loginBox2 input{
width: 100%;
margin-bottom: 20px;

}
.loginBox1 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;
}

.loginBox2 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;
}
::placeholder{
color: rgba(255,255,255,.5);
}
.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;
}

75 changes: 75 additions & 0 deletions Week3-Project/BhawnaSharma003/EnterDetails.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title> Employee Details </title>
<link rel="stylesheet" href="EnterDetails.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src = "EnterDetails.js"></script>
</head>
<body>
<header>
<img src="logo.png" alt="logo">

</header>

<div class="loginBox">

<form method="post">
<p>Employment Id</p>
<input type="text" name="" placeholder="EMP000" id="EmploymentId">
<p>First Name</p>
<input type="text" name="" placeholder="First Name" id="FirstName">
<p>Last Name</p>
<input type="text" name="" placeholder="Last Name" id="LastName">
<p>Contact Number</p>
<input type="number" name="phone number" min="10" max="11" placeholder="999999999999" id="ContactNumber">
<p> Date Of Birth </p>
<input type="date" name="birthday" id="DateOfBirth"><br><br><br><br>





</form>
</div>
<div class="loginBox1">

<form method="post">
<p>Department Id</p>
<input type="text" name="" placeholder="DEP000" id="DepartmentId">
<p> Department Name </p>
<input type="text" name="" placeholder="Accounting and Finance" id="DepartmentName ">
<p> Designation </p>
<input type="text" name="" placeholder="Chief Financial Officer(CFO)" id=" Designation">
<p>Salary (per annum) </p>
<input type="number" name="" min="6" max="14" placeholder="100000" id="Salary">
<p> Hire Date </p>
<input type="date" name="HireDate" id="Hire Date"><br><br><br><br>
<a href="List.html"><input type="button" name="" value="Submit" onclick="onClick();" id="button"></a><br>


</form>
</div>
<div class="loginBox2">

<form >
<p>Pan Card Number</p>
<input type="number" name="Pan Card Number" min="12" max="12" placeholder="XYZ123" id="PanCardNumber">
<p> Residential Address </p>
<input type="text" name="" placeholder="House No., City, State, Country" id="ResidentialAddress">
<p> Email ID </p>
<input type="text" name="" placeholder="abc@cygrp.com" id="EmailID">
<p>GitHub Username</p>
<input type="text" name="" placeholder="abc123" id="GitHubUsername">
<p>LinkedIn Profile URL </p>
<input type="url" name="" placeholder="http://ca.linkedin.com/in/yourname" id="LinkedInProfile"><br><br><br><br>



</form>
</div>

</body>
</html>
Loading