├── README.md ├── contracts └── Election.sol ├── css ├── bootstrap.min.css └── bootstrap.min.css.map ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── index.html └── js ├── bootstrap.min.js └── web3.min.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/20_minute_dapp/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Election.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/20_minute_dapp/HEAD/contracts/Election.sol -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/20_minute_dapp/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/20_minute_dapp/HEAD/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/20_minute_dapp/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/20_minute_dapp/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/20_minute_dapp/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/20_minute_dapp/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/20_minute_dapp/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/20_minute_dapp/HEAD/index.html -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/20_minute_dapp/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/web3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/20_minute_dapp/HEAD/js/web3.min.js --------------------------------------------------------------------------------