diff --git a/js/App.js b/js/App.js
deleted file mode 100644
index 5908412..0000000
--- a/js/App.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import React from 'react';
-import FormPage from './components/FormPage';
-
-function App() {
- return (
-
-
Income Tax Entry Form
-
-
- );
-}
-
-export default App;
diff --git a/js/FormPage.js b/js/FormPage.js
deleted file mode 100644
index ca680bd..0000000
--- a/js/FormPage.js
+++ /dev/null
@@ -1,50 +0,0 @@
-import React, { useState } from 'react';
-import axios from 'axios';
-
-const FormPage = ({ table }) => {
- const [formData, setFormData] = useState({
- gross_total_income: '',
- net_taxable_income: '',
- tax_payable: '',
- total_tax_payable: '',
- refund: ''
- });
-
- const handleChange = e => {
- setFormData({ ...formData, [e.target.name]: e.target.value });
- };
-
- const handleSubmit = async e => {
- e.preventDefault();
- await axios.post(`http://localhost:5000/add/${table}`, formData);
- alert('Entry saved');
- setFormData({
- gross_total_income: '',
- net_taxable_income: '',
- tax_payable: '',
- total_tax_payable: '',
- refund: ''
- });
- };
-
- return (
-
- );
-};
-
-export default FormPage;
diff --git a/templates/welcome.html b/templates/welcome.html
deleted file mode 100644
index 759845b..0000000
--- a/templates/welcome.html
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-
- Welcome - Laxmi Civil Engineering Pvt. Ltd
-
-
-
-
-
-
- Welcome to Laxmi Civil Engineering Pvt. Ltd
- Income Tax Filing and Compliance
- Go To Dashboard
-
-
-
-
-
\ No newline at end of file