You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

182 lines
6.0 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Job Posting</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
.Existing_client {
body {
font-family: Arial, sans-serif;
}
label.required::after {
content: "*";
color: black;
margin-left: 5px;
}
.form-group {
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 20px;
}
.form-group label {
margin-right: 1px;
width: 150px;
}
.form-group select,
.form-group input {
flex: 1;
}
ul {
list-style-type: none;
padding: 0;
margin-bottom: 20px;
margin-left: 300px;
}
li {
float: left;
margin-bottom: 20px;
margin-left: -10px;
}
li a {
display: block;
color: black;
text-align: center;
padding: 1px;
text-decoration: underline;
margin-top: 20px;
margin-left: 60px;
}
a:hover {
color: red;
}
.container {
width: 60%; /* Adjusted width */
margin: auto;
padding: 20px;
border-radius: 10px;
overflow: hidden;
margin-left: 300px; /* Adjusted margin */
}
.form-group button {
margin-left: auto;
margin-top: 10px;
display: block;
}
table {
width: 60%; /* Adjusted width */
border-collapse: collapse;
margin-bottom: 50px;
margin-left: 350px;
margin-top: 30px;
}
th, td {
border: 1px solid #DDDDDD;
padding: 8px;
text-align: left;
color: white;
text-align: center;
}
th {
background-color: #336699;
}
td {
color: black;
background-color: white;
}
.add-button {
margin-top: 20px;
text-align: right;
margin-right: 270px;
}
.save-button {
width: 10%;
}
.add a {
text-decoration: none;
}
.add p {
margin-left: 1180px;
margin-top: 3px;
}
.add span {
display: inline-block;
width: 25px;
height: 25px;
border: 2px solid black; /* Add border property */
border-radius: 50%;
text-align: center;
line-height: 30px;
margin-left: 1200px;
color: black;
}
}
</style>
</head>
<body>
<div class="Existing_client">
<div class="container">
<div class="form-group">
<label for="ClientDropdown" class="required">Client:</label>
<select id="ClientDropdown" name="Client" required style="margin-left: -80px; height: 30px;">
<option value="">Select Client</option>
<option value="oracle">Oracle</option>
<option value="skyonn">Skyonn</option>
<option value="capgemini">Capgemini</option>
</select>
<label for="SubClientDropdown" class="required">Sub Client:</label>
<select id="SubClientDropdown" name="SubClient" required style="margin-left: -50px; height: 30px;">
<option value="">Select Sub Client</option>
<option value="vr heights">VR Heights</option>
<option value="sky tower">Sky Tower</option>
<option value="tech park">Tech Park</option>
</select>
<button id="getDetailsButton" type="button" style="margin-left: 30px;margin-top: 0px; background-color: #77C3EC; color: white; height: 30px;">Get Details</button>
</div>
</div>
<ul style="margin-top: -25px;">
<li><a href="javascript:void(0);" class="department-link" data-department="hiring_managers">HIRING MANAGERS</a></li>
<li><a href="javascript:void(0);" class="department-link" data-department="accounts">ACCOUNT DEPARTMENT</a></li>
<li><a href="javascript:void(0);" class="department-link" data-department="human_resources">HUMAN RESOURCES</a></li>
<li><a href="javascript:void(0);" class="department-link" data-department="administration">ADMINISTRATION AND LEGAL</a></li>
</ul>
<br><br>
<div class="original-table">
<table id="originalEmployeeTable">
<thead>
<tr>
<th>Name</th>
<th>Designation</th>
<th>Department</th>
<th>Phone</th>
<th>Email</th>
<th>Location</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<!-- Rows will be added here dynamically -->
</tbody>
</table>
</div>
<div class="add">
<a href="#" onclick="addNewTable()">
<span class="circle"><i class="fas fa-plus" style="margin-top: -10px;"></i></span>
<p>Add New</p>
</a>
</div>
<script>
</script>
</body>
</html>