├── .babelrc ├── .gitignore ├── README.md ├── Server ├── .gitignore ├── app.js ├── backend │ ├── Api │ │ ├── send_mail.js │ │ └── send_sms.js │ ├── Config │ │ └── db_config.js │ ├── Controller │ │ └── user.js │ └── Model │ │ ├── Government_Registrar.js │ │ └── User.js ├── package-lock.json └── package.json ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── Components │ ├── Dashboard.js │ ├── Dashboard_Govt.js │ ├── Govt_Login.js │ ├── Help.js │ ├── Home.js │ ├── Login.js │ ├── Profile.js │ └── Register.js ├── Containers │ ├── Buyer_Table.js │ ├── Govt_Table.js │ ├── Header.js │ ├── Owner_Table.js │ └── RegistrationForm.js ├── abis │ ├── LandRegistry.json │ └── Migrations.json ├── contracts │ ├── LandRegistry.sol │ └── Migrations.sol ├── images │ ├── 10.jpg │ ├── avatar.png │ ├── bg.jpg │ ├── home.png │ └── img.jpg ├── index.css ├── index.js ├── ipfs.js ├── logo.svg ├── serviceWorker.js └── setupTests.js └── truffle-config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/README.md -------------------------------------------------------------------------------- /Server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/Server/.gitignore -------------------------------------------------------------------------------- /Server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/Server/app.js -------------------------------------------------------------------------------- /Server/backend/Api/send_mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/Server/backend/Api/send_mail.js -------------------------------------------------------------------------------- /Server/backend/Api/send_sms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/Server/backend/Api/send_sms.js -------------------------------------------------------------------------------- /Server/backend/Config/db_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/Server/backend/Config/db_config.js -------------------------------------------------------------------------------- /Server/backend/Controller/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/Server/backend/Controller/user.js -------------------------------------------------------------------------------- /Server/backend/Model/Government_Registrar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/Server/backend/Model/Government_Registrar.js -------------------------------------------------------------------------------- /Server/backend/Model/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/Server/backend/Model/User.js -------------------------------------------------------------------------------- /Server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/Server/package-lock.json -------------------------------------------------------------------------------- /Server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/Server/package.json -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Components/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Components/Dashboard.js -------------------------------------------------------------------------------- /src/Components/Dashboard_Govt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Components/Dashboard_Govt.js -------------------------------------------------------------------------------- /src/Components/Govt_Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Components/Govt_Login.js -------------------------------------------------------------------------------- /src/Components/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Components/Help.js -------------------------------------------------------------------------------- /src/Components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Components/Home.js -------------------------------------------------------------------------------- /src/Components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Components/Login.js -------------------------------------------------------------------------------- /src/Components/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Components/Profile.js -------------------------------------------------------------------------------- /src/Components/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Components/Register.js -------------------------------------------------------------------------------- /src/Containers/Buyer_Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Containers/Buyer_Table.js -------------------------------------------------------------------------------- /src/Containers/Govt_Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Containers/Govt_Table.js -------------------------------------------------------------------------------- /src/Containers/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Containers/Header.js -------------------------------------------------------------------------------- /src/Containers/Owner_Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Containers/Owner_Table.js -------------------------------------------------------------------------------- /src/Containers/RegistrationForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/Containers/RegistrationForm.js -------------------------------------------------------------------------------- /src/abis/LandRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/abis/LandRegistry.json -------------------------------------------------------------------------------- /src/abis/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/abis/Migrations.json -------------------------------------------------------------------------------- /src/contracts/LandRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/contracts/LandRegistry.sol -------------------------------------------------------------------------------- /src/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/contracts/Migrations.sol -------------------------------------------------------------------------------- /src/images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/images/10.jpg -------------------------------------------------------------------------------- /src/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/images/avatar.png -------------------------------------------------------------------------------- /src/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/images/bg.jpg -------------------------------------------------------------------------------- /src/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/images/home.png -------------------------------------------------------------------------------- /src/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/images/img.jpg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/index.js -------------------------------------------------------------------------------- /src/ipfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/ipfs.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1209simran/Land-Registry-Application/HEAD/truffle-config.js --------------------------------------------------------------------------------