resolution-archive/templates/base.html

69 lines
1.8 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>
2025-01-30 13:07:48 +06:00
<link rel="stylesheet" href="{% static 'css/style.css' %}">
<link rel="stylesheet" href="{% static 'css/form.css' %}">
<link rel="stylesheet" href="{% static 'css/table.css' %}">
2025-01-26 11:22:57 +06:00
</head>
<body>
<div class="navbar">
<div class="logo-container">
<div class="logo">
2025-01-30 13:07:48 +06:00
<img src="{% static 'images/icon.png'%}">
2025-01-26 11:22:57 +06:00
</div>
<div class="company-name">Management Information System (MIS)</div>
</div>
<div class="menu-container">
2025-01-30 13:07:48 +06:00
<a href="http://localhost:8000/rcm">Home</a>
2025-01-26 11:22:57 +06:00
<div class="dropdown">
2025-02-18 16:23:22 +06:00
<a href="#" class="dropdown-btn">Upload</a>
2025-01-26 11:22:57 +06:00
<div class="dropdown-content">
2025-01-30 13:07:48 +06:00
<a href="http://localhost:8000/rcm/resulation">Resulation</a>
2025-02-18 16:23:22 +06:00
<a href="http://localhost:8000/rcm/deed">Contract</a>
<a href="http://localhost:8000/rcm/mou">MoU</a>
2025-01-30 13:07:48 +06:00
</div>
</div>
<div class="dropdown">
<a href="#" class="dropdown-btn">View</a>
<div class="dropdown-content">
<a href="http://localhost:8000/rcm/viewresulation">Resulations</a>
<a href="#">Contracts</a>
2025-02-18 16:23:22 +06:00
<a href="http://localhost:8000/rcm/viewmou">MoU</a>
2025-01-30 13:07:48 +06:00
2025-01-26 11:22:57 +06:00
</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>