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.
225 lines
8.1 KiB
225 lines
8.1 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">
|
|
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
|
|
<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>
|
|
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
body {
|
|
position: relative;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
.header {
|
|
height: 60px;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
h2{
|
|
color: red;
|
|
margin-left: 400px ;
|
|
white-space: nowrap;
|
|
margin-top: 10px;
|
|
}
|
|
.search--notification--profile {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: calc(100% - 100px);
|
|
padding: 0 40px;
|
|
margin-left: -10px;
|
|
}
|
|
.search {
|
|
width: 300px;
|
|
padding: 5px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.search-container {
|
|
display: flex;
|
|
align-items: center;
|
|
border: 1px solid black;
|
|
border-radius: 5px;
|
|
padding: 0 5px;
|
|
}
|
|
.search input {
|
|
outline: none;
|
|
border: none;
|
|
text-indent: 15px;
|
|
width: 100%;
|
|
height: 40px;
|
|
}
|
|
.search button {
|
|
outline: none;
|
|
border: none;
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.main {
|
|
position: relative;
|
|
width: 100%;
|
|
min-height: calc(100vh - 60px);
|
|
}
|
|
.sidebar {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 250px;
|
|
background-color: #fff;
|
|
padding: 30px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
border-right: 1px solid black;
|
|
}
|
|
.sidebar.active {
|
|
width: 103px;
|
|
overflow: hidden;
|
|
}
|
|
.sidebar.active .sidebar--item {
|
|
display: none;
|
|
}
|
|
li {
|
|
list-style: none;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
.sidebar--items a,
|
|
.sidebar--bottom-items a {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
font-size: 1.1rem;
|
|
color: blue;
|
|
padding: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
.sidebar--items a:hover,
|
|
.sidebar--bottom-items a:hover {
|
|
color: red;
|
|
}
|
|
</style>
|
|
<title>Admin Dashboard</title>
|
|
</head>
|
|
<body>
|
|
<section class="header">
|
|
<h1 style="color: lightskyblue; margin-top: 10px; margin-left: 50px; text-decoration: underline;">Home</h1>
|
|
<h2>Admin <span>Dashboard</span></h2>
|
|
<div class="search--notification--profile">
|
|
<div class="search">
|
|
<div class="search-container">
|
|
<input type="text" placeholder="Search">
|
|
<button><i class="ri-search-2-line"></i></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="bell" style="margin-right: 40px;">
|
|
<i class="fa-solid fa-bell"></i>
|
|
</div>
|
|
<div class="profile" style="margin-right: 40px;">
|
|
<i class="fa-solid fa-user"></i>
|
|
</div>
|
|
<h3 style="margin-right: 40px;">Laxmi</h3>
|
|
<a href="#" style="margin-right: 350px; color: blue; font-size: larger; text-decoration: underline;">LogOut</a>
|
|
</section>
|
|
<section class="main">
|
|
<div class="sidebar">
|
|
<ul class="sidebar--items">
|
|
<li>
|
|
<a href="{% url 'client-details' %}" class="sidebar-link" onclick="activateLink(this)">
|
|
<span class="sidebar--item">Client Details</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#" class="sidebar-link" onclick="activateLink(this)">
|
|
<span class="sidebar--item">Team Details</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#" class="sidebar-link" onclick="activateLink(this)">
|
|
<span class="sidebar--item">New Job Postings</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#" class="sidebar-link" onclick="activateLink(this)">
|
|
<span class="sidebar--item">All Jobs Postings</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#" class="sidebar-link" onclick="activateLink(this)">
|
|
<span class="sidebar--item">Messages</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#" class="sidebar-link" onclick="activateLink(this)">
|
|
<span class="sidebar--item">Pending Process</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#" class="sidebar-link" onclick="activateLink(this)">
|
|
<span class="sidebar--item">Submitted Resumes</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#" class="sidebar-link" onclick="activateLink(this)">
|
|
<span class="sidebar--item">Add a New SPOC</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#" class="sidebar-link" onclick="activateLink(this)">
|
|
<span class="sidebar--item">Client Details</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#" class="sidebar-link" onclick="activateLink(this)">
|
|
<span class="sidebar--item">Activity Report</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div id="clientDetailsContainer" style="display: none;">
|
|
<ul>
|
|
<div class="nav">
|
|
<li><a href="#" class="btn" onclick="loadPage('Admin_client2.html')">Client Details:</a></li>
|
|
<li><a href="#" class="btn" onclick="loadPage('Existing_client.html')">Existing Client</a></li>
|
|
<li><a href="#" class="btn" onclick="loadPage('Admin_client.html')">Add New Client</a></li>
|
|
<li><a href="#" class="btn" onclick="loadPage('page4.html')">Add Sub Clients/Locations</a></li>
|
|
</div>
|
|
</ul>
|
|
</div>
|
|
<iframe id="contentFrame" style="width: 100%; height: 80vh; border: none; display: none;"></iframe>
|
|
<script>
|
|
function loadPage(pageName) {
|
|
var iframe = document.getElementById('contentFrame');
|
|
iframe.src = pageName;
|
|
iframe.style.display = 'block'; // Show the iframe
|
|
}
|
|
function activateLink(link) {
|
|
var links = document.querySelectorAll('.sidebar-link');
|
|
links.forEach(function(item) {
|
|
item.classList.remove('active');
|
|
});
|
|
link.classList.add('active');
|
|
}
|
|
</script>
|
|
</section>
|
|
</body>
|
|
</html>
|