├── LICENSE ├── README.md ├── app ├── config │ └── passport.js ├── handlers │ ├── pollHandler.server.js │ └── userHandler.server.js ├── models │ ├── polls.js │ └── users.js └── routes │ └── index.js ├── package.json ├── public ├── index.html ├── scripts │ └── index.js ├── styles │ └── narrow-jumbotron.css └── user.html ├── screenshots ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg └── 5.jpg └── server.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/README.md -------------------------------------------------------------------------------- /app/config/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/app/config/passport.js -------------------------------------------------------------------------------- /app/handlers/pollHandler.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/app/handlers/pollHandler.server.js -------------------------------------------------------------------------------- /app/handlers/userHandler.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/app/handlers/userHandler.server.js -------------------------------------------------------------------------------- /app/models/polls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/app/models/polls.js -------------------------------------------------------------------------------- /app/models/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/app/models/users.js -------------------------------------------------------------------------------- /app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/app/routes/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/public/index.html -------------------------------------------------------------------------------- /public/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/public/scripts/index.js -------------------------------------------------------------------------------- /public/styles/narrow-jumbotron.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/public/styles/narrow-jumbotron.css -------------------------------------------------------------------------------- /public/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/public/user.html -------------------------------------------------------------------------------- /screenshots/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/screenshots/1.jpg -------------------------------------------------------------------------------- /screenshots/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/screenshots/2.jpg -------------------------------------------------------------------------------- /screenshots/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/screenshots/3.jpg -------------------------------------------------------------------------------- /screenshots/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/screenshots/4.jpg -------------------------------------------------------------------------------- /screenshots/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/screenshots/5.jpg -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuagrawal2791/myVote/HEAD/server.js --------------------------------------------------------------------------------