add auto-calculation of Itr and Ao form and also back-to dashboard button commit
This commit is contained in:
@@ -98,6 +98,24 @@
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Back button styling */
|
||||
.back-btn {
|
||||
display: inline-block;
|
||||
margin-bottom: 20px;
|
||||
padding: 10px 18px;
|
||||
background: #6c757d;
|
||||
color: white;
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
border-radius: 6px;
|
||||
text-decoration: none;
|
||||
transition: background 0.3s ease;
|
||||
}
|
||||
|
||||
.back-btn:hover {
|
||||
background: #5a6268;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
form {
|
||||
flex-direction: column;
|
||||
@@ -113,6 +131,10 @@
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
|
||||
<!-- Back to Dashboard Button -->
|
||||
<a href="{{ url_for('index') }}" class="back-btn">← Back to Dashboard</a>
|
||||
|
||||
<h2>Document Records</h2>
|
||||
|
||||
<form method="GET">
|
||||
|
||||
Reference in New Issue
Block a user