add auto-calculation of Itr and Ao form and also back-to dashboard button commit
This commit is contained in:
@@ -4,6 +4,8 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Add New Income Tax Return Record</title>
|
||||
<script src="/static/js/itr_calc.js"></script>
|
||||
|
||||
<style>
|
||||
body {
|
||||
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
||||
@@ -89,6 +91,24 @@
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* 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;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 768px) {
|
||||
form {
|
||||
@@ -104,6 +124,10 @@
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<!-- Back to Dashboard Button -->
|
||||
<a href="{{ url_for('index') }}" class="back-btn">← Back to Dashboard</a>
|
||||
|
||||
|
||||
<h2>Add New Income Tax Return Record</h2>
|
||||
<form method="POST" action="{{ url_for('add_itr') }}">
|
||||
<div class="form-group">
|
||||
|
||||
Reference in New Issue
Block a user