Files
IncomeTaxSystem/templates/index.html
2025-11-30 12:55:40 +05:30

94 lines
2.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home | ITR & AO Form</title>
<link rel="stylesheet" href="{{ url_for('static', filename='index.css') }}">
<style>
/* Reset some defaults */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f2f4f8;
color: #333;
line-height: 1.6;
}
.container {
max-width: 700px;
margin: 80px auto;
padding: 40px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
h2 {
text-align: center;
margin-bottom: 30px;
font-size: 28px;
color: #2c3e50;
}
ul {
list-style: none;
}
li {
margin: 20px 0;
}
a {
display: block;
text-decoration: none;
background-color: #007BFF;
color: white;
padding: 14px 20px;
border-radius: 6px;
font-size: 18px;
transition: background-color 0.3s ease, transform 0.2s ease;
}
a:hover {
background-color: #0056b3;
transform: translateX(5px);
}
/* Responsive */
@media (max-width: 600px) {
.container {
margin: 20px;
padding: 20px;
}
a {
font-size: 16px;
padding: 12px 16px;
}
}
</style>
</head>
<body>
<div class="container">
<h2>Income Tax Utilities</h2>
<ul>
<li><a href="{{ url_for('itr_form') }}">→ Fill ITR Form</a></li>
<li><a href="{{ url_for('ao_form') }}">→ Fill AO Form</a></li>
<li><a href="{{ url_for('cit_form') }}">→ Fill CIT Form</a></li>
<li><a href="{{ url_for('itat_form') }}">→ Fill ITAT Form</a></li>
<li><a href="/upload">→ Upload Documents</a></li>
<li><a href="/documents">→ View Documents</a></li>
<li><a href="/reports">→ Reports</a></li> <!-- Added Reports -->
<li><a href="/summary_report">→ Summary Reports</a></li> <!-- Added Summary Reports -->
</ul>
</div>
</body>
</html>