2025-09-18 11:33:28 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-09-18 11:33:28 +05:30
|
|
|
<head>
|
|
|
|
|
<title>Upload Documents</title>
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='index.css') }}">
|
2025-12-06 23:17:22 +05:30
|
|
|
<script src="/static/js/year_dropdown.js"></script>
|
2025-09-18 11:33:28 +05:30
|
|
|
</head>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-09-18 11:33:28 +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-09-18 11:33:28 +05:30
|
|
|
<h2>Upload Income Tax Documents</h2>
|
|
|
|
|
<form method="POST" enctype="multipart/form-data">
|
2025-12-06 23:17:22 +05:30
|
|
|
<!-- <label for="year">Year:</label>
|
|
|
|
|
<input type="number" name="year" required> -->
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label>Year:</label>
|
|
|
|
|
<select id="year" name="year" required></select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="stage">Stage:</label>
|
|
|
|
|
<select name="stage" required>
|
|
|
|
|
<option value="ITR">ITR</option>
|
|
|
|
|
<option value="AO">AO</option>
|
|
|
|
|
<option value="CIT">CIT</option>
|
|
|
|
|
<option value="ITAT">ITAT</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
2025-09-18 11:33:28 +05:30
|
|
|
<label for="documents">Select Documents:</label>
|
|
|
|
|
<input type="file" name="documents" multiple required>
|
|
|
|
|
|
|
|
|
|
<button type="submit">Upload</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
|
|
|
|
</html>
|