|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
<title>Employee Directory using Type Script</title>
|
|
<style>
|
|
|
|
.header-rwapper .logisec {
|
|
background-image: url(banner2.png);
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: center;
|
|
position: relative;
|
|
border-radius: 0;
|
|
color: #fff;
|
|
height: 50px;
|
|
padding: 1.5rem;
|
|
z-index: 30;
|
|
background-color: #fff;
|
|
box-shadow: 0 2px 4px #e5e5e5;
|
|
}
|
|
|
|
.header-rwapper .logisec img {
|
|
height: 45px;
|
|
margin-top: 3px;
|
|
}
|
|
.header-rwapper .logisec>div {
|
|
height: 40px;
|
|
margin-top: -8px;
|
|
}
|
|
|
|
.header-rwapper .logisec>div h4, .header-rwapper .logisec>div .h4 {
|
|
line-height: 44px;
|
|
color: #1d44b3;
|
|
font-size: 22px;
|
|
margin: 0px;
|
|
}
|
|
.text-center {
|
|
text-align: center !important;
|
|
}
|
|
.col-md-6 {
|
|
/* flex: 0 0 auto; */
|
|
width: 50%;
|
|
}
|
|
body {
|
|
margin: 0px;
|
|
}
|
|
.bodyContent {
|
|
text-align: center;
|
|
margin: 15% 0px;
|
|
overflow: hidden;
|
|
}
|
|
#link {
|
|
color: green;
|
|
}
|
|
#banIcon {
|
|
color: red;
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
}
|
|
.headertext {
|
|
color: #525797;
|
|
margin: 0px;
|
|
text-align: center;
|
|
}
|
|
header {
|
|
|
|
|
|
align-items: center; /* Align items vertically center */
|
|
height: 60px; /* Adjusted height */
|
|
}
|
|
footer {
|
|
background-color: whitesmoke;
|
|
color: #212529;
|
|
margin: 0px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
position: absolute;
|
|
width: 100%;
|
|
bottom: 26px;
|
|
padding: 3px 0px;
|
|
}
|
|
footer p {
|
|
margin: 0px;
|
|
padding: 0 15px;
|
|
}
|
|
.col-md-6 {
|
|
flex: 0 0 auto;
|
|
color: #525797;
|
|
width: 50%;
|
|
height: 45px; /* Adjusted height */
|
|
|
|
}
|
|
.main-header .header-rwapper{
|
|
height: 50px;
|
|
}
|
|
.main-header .header-rwapper .logisec{
|
|
padding: 0 15px;
|
|
}
|
|
.main-header .header-rwapper .logisec > div{
|
|
display: inline-block;
|
|
padding-top: 7px;
|
|
}
|
|
.main-header .header-rwapper .logisec > div.col-md-6{
|
|
float: right;
|
|
width: 70%;
|
|
}
|
|
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header class="main-header">
|
|
|
|
<div class="row header-rwapper mx-0 px-0">
|
|
<div class="logisec row py-2 mx-0 px-0">
|
|
<div class="col-md-3">
|
|
<img class="img-fluid logorw" src="./logo-text.png"></div>
|
|
<div class="col-md-6">
|
|
<h4>Rwanda Road Asset Management System</h4>
|
|
</div>
|
|
|
|
</header>
|
|
<div class="bodyContent" >
|
|
<i id="banIcon" class="fa-solid fa-ban"></i>
|
|
<h4>OOPS, SORRY WE CAN'T FIND THE PAGE!</h4>
|
|
<p>Either something went wrong or the page doesn't exist anymore.</p>
|
|
<p>You could return to the homepage. <a href="#" id="link">Click here</a></p>
|
|
</div>
|
|
<footer>
|
|
<p>Copyright @ 2024 RTDA RWanda. All rights reserved.</p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|