157 lines
3.6 KiB
HTML
157 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<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;
|
|
background: #eef2f7;
|
|
margin: 0;
|
|
padding: 40px;
|
|
color: #333;
|
|
}
|
|
|
|
.container {
|
|
max-width: 900px;
|
|
margin: auto;
|
|
background: #fff;
|
|
padding: 40px 50px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
|
|
transition: box-shadow 0.3s ease;
|
|
}
|
|
|
|
.container:hover {
|
|
box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
margin-bottom: 35px;
|
|
font-size: 30px;
|
|
color: #2c3e50;
|
|
font-weight: 700;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
form {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 20px 30px;
|
|
}
|
|
|
|
.form-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
label {
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
color: #555;
|
|
font-size: 14px;
|
|
}
|
|
|
|
input[type="number"] {
|
|
padding: 10px 12px;
|
|
border: 1px solid #ccd1d9;
|
|
border-radius: 6px;
|
|
font-size: 15px;
|
|
background-color: #fafafa;
|
|
transition: all 0.25s ease-in-out;
|
|
}
|
|
|
|
input[type="number"]:focus {
|
|
border-color: #007BFF;
|
|
background: #fff;
|
|
box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
|
|
outline: none;
|
|
}
|
|
|
|
button[type="submit"] {
|
|
grid-column: span 2;
|
|
margin-top: 25px;
|
|
padding: 15px;
|
|
background: linear-gradient(135deg, #007BFF, #0056b3);
|
|
border: none;
|
|
border-radius: 8px;
|
|
color: #fff;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: transform 0.2s, background 0.3s;
|
|
}
|
|
|
|
button[type="submit"]:hover {
|
|
background: linear-gradient(135deg, #0056b3, #00408f);
|
|
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 {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<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">
|
|
<label>Year:</label>
|
|
<input type="number" name="year" required>
|
|
</div>
|
|
|
|
{% for field in [
|
|
"gross_total_income", "disallowance_14a", "disallowance_37",
|
|
"deduction_80ia_business", "deduction_80ia_misc", "deduction_80ia_other",
|
|
"deduction_sec37_disallowance", "deduction_80g", "net_taxable_income",
|
|
"tax_30_percent", "tax_book_profit_18_5", "tax_payable", "surcharge_12",
|
|
"edu_cess_3", "total_tax_payable", "mat_credit", "interest_234c",
|
|
"total_tax", "advance_tax", "tds", "tcs", "tax_on_assessment", "refund"
|
|
] %}
|
|
<div class="form-group">
|
|
<label>{{ field.replace("_", " ").title() }}:</label>
|
|
<input type="number" name="{{ field }}" step="any" value="0.00" required>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |