├── .gitattributes ├── LICENSE ├── README.md ├── client ├── .env ├── .gitignore ├── package-lock.json ├── package.json ├── public │ ├── favicon.png │ └── index.html └── src │ ├── App.css │ ├── App.js │ ├── component │ ├── Admin │ │ ├── AddCandidate │ │ │ ├── AddCandidate.css │ │ │ └── AddCandidate.js │ │ ├── StartEnd │ │ │ ├── StartEnd.css │ │ │ └── StartEnd.js │ │ └── Verification │ │ │ ├── Verification.css │ │ │ └── Verification.js │ ├── AdminOnly.js │ ├── ElectionStatus.js │ ├── Footer │ │ ├── Footer.css │ │ └── Footer.js │ ├── Home.css │ ├── Home.js │ ├── Navbar │ │ ├── Navbar.css │ │ ├── Navigation.js │ │ └── NavigationAdmin.js │ ├── NotInit.js │ ├── Registration │ │ ├── Registration.css │ │ └── Registration.js │ ├── Results │ │ ├── Results.css │ │ └── Results.js │ ├── StartEnd.js │ ├── UserHome.js │ ├── Voting │ │ ├── Voting.css │ │ └── Voting.js │ └── test.js │ ├── getWeb3.js │ └── index.js ├── contracts ├── Election.sol └── Migrations.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js └── truffle-config.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/README.md -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/public/favicon.png -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/component/Admin/AddCandidate/AddCandidate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Admin/AddCandidate/AddCandidate.css -------------------------------------------------------------------------------- /client/src/component/Admin/AddCandidate/AddCandidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Admin/AddCandidate/AddCandidate.js -------------------------------------------------------------------------------- /client/src/component/Admin/StartEnd/StartEnd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Admin/StartEnd/StartEnd.css -------------------------------------------------------------------------------- /client/src/component/Admin/StartEnd/StartEnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Admin/StartEnd/StartEnd.js -------------------------------------------------------------------------------- /client/src/component/Admin/Verification/Verification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Admin/Verification/Verification.css -------------------------------------------------------------------------------- /client/src/component/Admin/Verification/Verification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Admin/Verification/Verification.js -------------------------------------------------------------------------------- /client/src/component/AdminOnly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/AdminOnly.js -------------------------------------------------------------------------------- /client/src/component/ElectionStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/ElectionStatus.js -------------------------------------------------------------------------------- /client/src/component/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Footer/Footer.css -------------------------------------------------------------------------------- /client/src/component/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Footer/Footer.js -------------------------------------------------------------------------------- /client/src/component/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Home.css -------------------------------------------------------------------------------- /client/src/component/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Home.js -------------------------------------------------------------------------------- /client/src/component/Navbar/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Navbar/Navbar.css -------------------------------------------------------------------------------- /client/src/component/Navbar/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Navbar/Navigation.js -------------------------------------------------------------------------------- /client/src/component/Navbar/NavigationAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Navbar/NavigationAdmin.js -------------------------------------------------------------------------------- /client/src/component/NotInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/NotInit.js -------------------------------------------------------------------------------- /client/src/component/Registration/Registration.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Registration/Registration.css -------------------------------------------------------------------------------- /client/src/component/Registration/Registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Registration/Registration.js -------------------------------------------------------------------------------- /client/src/component/Results/Results.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Results/Results.css -------------------------------------------------------------------------------- /client/src/component/Results/Results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Results/Results.js -------------------------------------------------------------------------------- /client/src/component/StartEnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/StartEnd.js -------------------------------------------------------------------------------- /client/src/component/UserHome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/UserHome.js -------------------------------------------------------------------------------- /client/src/component/Voting/Voting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Voting/Voting.css -------------------------------------------------------------------------------- /client/src/component/Voting/Voting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/Voting/Voting.js -------------------------------------------------------------------------------- /client/src/component/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/component/test.js -------------------------------------------------------------------------------- /client/src/getWeb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/getWeb3.js -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/client/src/index.js -------------------------------------------------------------------------------- /contracts/Election.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/contracts/Election.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arlbibek/dVoting/HEAD/truffle-config.js --------------------------------------------------------------------------------