2025-11-30 16:24:49 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-11-30 16:24:49 +05:30
|
|
|
<head>
|
2025-12-06 23:17:22 +05:30
|
|
|
<title>Add New ITAT Record</title>
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/add_ao.css') }}">
|
|
|
|
|
<script src="/static/js/year_dropdown.js"></script>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-11-30 16:24:49 +05:30
|
|
|
</head>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-11-30 16:24:49 +05:30
|
|
|
<body>
|
|
|
|
|
<div class="container">
|
2025-12-04 17:31:12 +05:30
|
|
|
<!-- Back to Dashboard Button -->
|
|
|
|
|
<a href="{{ url_for('index') }}" class="back-btn">← Back to Dashboard</a>
|
|
|
|
|
|
2025-11-30 16:24:49 +05:30
|
|
|
<h2>ITAT Form Entry</h2>
|
|
|
|
|
<form method="POST" onsubmit="return showSuccessMessage()">
|
2025-12-06 23:17:22 +05:30
|
|
|
<!-- <label>Year:</label>
|
|
|
|
|
<input type="number" name="year" step="0.01" required> -->
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label> Year:</label>
|
|
|
|
|
<select id="year" name="year" required></select>
|
|
|
|
|
</div>
|
2025-11-30 16:24:49 +05:30
|
|
|
|
|
|
|
|
<label>MAT Tax Credit:</label>
|
|
|
|
|
<input type="number" name="mat_tax_credit" step="0.01" required>
|
|
|
|
|
|
|
|
|
|
<label>Surcharge:</label>
|
|
|
|
|
<input type="number" name="surcharge" step="0.01" required>
|
|
|
|
|
|
|
|
|
|
<label>Cess:</label>
|
|
|
|
|
<input type="number" name="cess" step="0.01" required>
|
|
|
|
|
|
|
|
|
|
<label>Total Credit:</label>
|
|
|
|
|
<input type="number" name="total_credit" step="0.01" required>
|
|
|
|
|
|
|
|
|
|
<button type="submit">Submit</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
function showSuccessMessage() {
|
|
|
|
|
alert("Form submitted successfully!");
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
|
|
|
|
</html>
|