├── QRUpload ├── demo.php ├── info.php ├── llqrcode.js └── webqr.js ├── README.md ├── about.html ├── connect.php ├── css ├── aboutstyle.css ├── bootstrap.css ├── demostyle.css ├── homestyle.css ├── loginstyle.css ├── pollstyle.css ├── profilestyle.css ├── registerstyle.css ├── regstyle.css ├── statstyle.css └── votestyle.css ├── font ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── images ├── Carousel_Placeholder.png ├── ChoosingWisely-CMYK-taglineR.jpg ├── Image-10 (1).jpg ├── Image-10.jpg ├── Thumbnail_Placeholder.png ├── Vote-Online-for-President-Now.png ├── election.jpg ├── register now.jpg ├── register.png └── results.jpg ├── index.html ├── js ├── bootstrap.js ├── jquery-1.11.3.min.js ├── jquery.easing-1.3.js ├── jquery.js ├── jquery.parallax.js ├── nivo-lightbox.min.js ├── owl.carousel.min.js ├── plugins.js ├── smoothscroll.js └── wow.min.js ├── login.php ├── nivo-lightbox.min.js ├── polls.html ├── process.php ├── profile.php └── register.html /QRUpload/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/QRUpload/demo.php -------------------------------------------------------------------------------- /QRUpload/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/QRUpload/info.php -------------------------------------------------------------------------------- /QRUpload/llqrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/QRUpload/llqrcode.js -------------------------------------------------------------------------------- /QRUpload/webqr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/QRUpload/webqr.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/README.md -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/about.html -------------------------------------------------------------------------------- /connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/connect.php -------------------------------------------------------------------------------- /css/aboutstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/css/aboutstyle.css -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/demostyle.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | -------------------------------------------------------------------------------- /css/homestyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/css/homestyle.css -------------------------------------------------------------------------------- /css/loginstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/css/loginstyle.css -------------------------------------------------------------------------------- /css/pollstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/css/pollstyle.css -------------------------------------------------------------------------------- /css/profilestyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/css/profilestyle.css -------------------------------------------------------------------------------- /css/registerstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/css/registerstyle.css -------------------------------------------------------------------------------- /css/regstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/css/regstyle.css -------------------------------------------------------------------------------- /css/statstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/css/statstyle.css -------------------------------------------------------------------------------- /css/votestyle.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | body { 3 | background-color: #F5F3EE; 4 | } 5 | -------------------------------------------------------------------------------- /font/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/font/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /font/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/font/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /font/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/font/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /font/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/font/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /font/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/font/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /images/Carousel_Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/images/Carousel_Placeholder.png -------------------------------------------------------------------------------- /images/ChoosingWisely-CMYK-taglineR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/images/ChoosingWisely-CMYK-taglineR.jpg -------------------------------------------------------------------------------- /images/Image-10 (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/images/Image-10 (1).jpg -------------------------------------------------------------------------------- /images/Image-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/images/Image-10.jpg -------------------------------------------------------------------------------- /images/Thumbnail_Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/images/Thumbnail_Placeholder.png -------------------------------------------------------------------------------- /images/Vote-Online-for-President-Now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/images/Vote-Online-for-President-Now.png -------------------------------------------------------------------------------- /images/election.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/images/election.jpg -------------------------------------------------------------------------------- /images/register now.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/images/register now.jpg -------------------------------------------------------------------------------- /images/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/images/register.png -------------------------------------------------------------------------------- /images/results.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/images/results.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/index.html -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/js/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /js/jquery.easing-1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/js/jquery.easing-1.3.js -------------------------------------------------------------------------------- /js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/js/jquery.js -------------------------------------------------------------------------------- /js/jquery.parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/js/jquery.parallax.js -------------------------------------------------------------------------------- /js/nivo-lightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/js/nivo-lightbox.min.js -------------------------------------------------------------------------------- /js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/js/owl.carousel.min.js -------------------------------------------------------------------------------- /js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/js/plugins.js -------------------------------------------------------------------------------- /js/smoothscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/js/smoothscroll.js -------------------------------------------------------------------------------- /js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/js/wow.min.js -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/login.php -------------------------------------------------------------------------------- /nivo-lightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/nivo-lightbox.min.js -------------------------------------------------------------------------------- /polls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/polls.html -------------------------------------------------------------------------------- /process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/process.php -------------------------------------------------------------------------------- /profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/profile.php -------------------------------------------------------------------------------- /register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshalpatel/E-Voting-System/HEAD/register.html --------------------------------------------------------------------------------