resolution-archive/templates/base.html

151 lines
3.3 KiB
HTML
Raw Normal View History

2025-01-26 11:22:57 +06:00
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MIS</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.navbar {
background-color: #2c3e50;
display: flex;
align-items: center;
padding: 0 20px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logo-container {
display: flex;
align-items: center;
margin-right: 30px;
}
.logo {
width: 50px;
height: 50px;
background-color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 10px;
}
.logo img {
max-width: 40px;
max-height: 40px;
}
.company-name {
color: white;
font-size: 20px;
font-weight: bold;
}
.menu-container {
display: flex;
flex-grow: 1;
}
.menu-container a {
color: white;
text-decoration: none;
padding: 14px 16px;
transition: background-color 0.3s;
}
.dropdown {
position: relative;
}
.dropdown-btn {
cursor: pointer;
display: flex;
align-items: center;
}
.dropdown-content {
display: none;
position: absolute;
background-color: white;
min-width: 200px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
z-index: 1000;
top: 100%;
border-radius: 4px;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a {
color: #2c3e50;
padding: 12px 16px;
display: block;
}
.dropdown-content a:hover {
background-color: #f1f1f1;
}
</style>
</head>
<body>
<div class="navbar">
<div class="logo-container">
<div class="logo">
</div>
<div class="company-name">Management Information System (MIS)</div>
</div>
<div class="menu-container">
<a href="http://localhost:8000/">Home</a>
<div class="dropdown">
<a href="#" class="dropdown-btn">Doccument</a>
<div class="dropdown-content">
<a href="http://localhost:8000/viewresulation">View Resulations</a>
<a href="http://localhost:8000/resulation">Upload Resulation</a>
<a href="#">View Contracts</a>
<a href="http://localhost:8000/deed">Upload Contract</a>
<a href="#">View MoUs</a>
<a href="http://localhost:8000/">Upload MoU</a>
</div>
</div>
</div>
</div>
{% block content %}
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
{% endblock content %}
</body>
<footer>
copyright@MIS-DGHS, Bangladesh
</footer>