├── .gitattributes ├── .gitignore ├── Project Document.pdf └── VotingSystem ├── .classpath ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.jdt.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── Resources └── DB_File.sql ├── WebContent ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── lib │ │ ├── javax.servlet.jsp.jstl-1.2.1.jar │ │ ├── javax.servlet.jsp.jstl-api-1.2.1.jar │ │ ├── json-lib-2.4-jdk15.jar │ │ ├── jsp-api.jar │ │ ├── mysql-connector-java-5.1.34-bin.jar │ │ └── servlet-api.jar │ └── web.xml ├── assets │ ├── css │ │ ├── reset.css │ │ ├── style.css │ │ └── supersized.css │ ├── img │ │ └── backgrounds │ │ │ └── 1.jpg │ └── js │ │ ├── jquery-1.8.2.min.js │ │ ├── scripts.js │ │ ├── supersized-init.js │ │ └── supersized.3.2.7.min.js ├── contact.jsp ├── images │ ├── bg-footer.gif │ ├── bg-header.gif │ ├── bg-menu.gif │ └── bg.jpg ├── index.jsp ├── jason-data.jsp ├── login.jsp ├── register.jsp ├── styles │ ├── ie6.css │ └── style.css ├── vote-stats.jsp └── vote.jsp ├── build └── classes │ └── edu │ └── npu │ └── votingsystem │ ├── database │ └── VotingBin.class │ ├── domain │ ├── Register.class │ └── Vote.class │ └── servlets │ ├── JasonServlet.class │ ├── LoginServlet.class │ ├── LogoutServlet.class │ ├── RegistrationServlet.class │ └── VotingServlet.class └── src └── edu └── npu └── votingsystem ├── database └── VotingBin.java ├── domain ├── Register.java └── Vote.java └── servlets ├── JasonServlet.java ├── LoginServlet.java ├── LogoutServlet.java ├── RegistrationServlet.java └── VotingServlet.java /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/.gitignore -------------------------------------------------------------------------------- /Project Document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/Project Document.pdf -------------------------------------------------------------------------------- /VotingSystem/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/.classpath -------------------------------------------------------------------------------- /VotingSystem/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/.project -------------------------------------------------------------------------------- /VotingSystem/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/.settings/.jsdtscope -------------------------------------------------------------------------------- /VotingSystem/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /VotingSystem/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /VotingSystem/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /VotingSystem/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /VotingSystem/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /VotingSystem/Resources/DB_File.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/Resources/DB_File.sql -------------------------------------------------------------------------------- /VotingSystem/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /VotingSystem/WebContent/WEB-INF/lib/javax.servlet.jsp.jstl-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/WEB-INF/lib/javax.servlet.jsp.jstl-1.2.1.jar -------------------------------------------------------------------------------- /VotingSystem/WebContent/WEB-INF/lib/javax.servlet.jsp.jstl-api-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/WEB-INF/lib/javax.servlet.jsp.jstl-api-1.2.1.jar -------------------------------------------------------------------------------- /VotingSystem/WebContent/WEB-INF/lib/json-lib-2.4-jdk15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/WEB-INF/lib/json-lib-2.4-jdk15.jar -------------------------------------------------------------------------------- /VotingSystem/WebContent/WEB-INF/lib/jsp-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/WEB-INF/lib/jsp-api.jar -------------------------------------------------------------------------------- /VotingSystem/WebContent/WEB-INF/lib/mysql-connector-java-5.1.34-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/WEB-INF/lib/mysql-connector-java-5.1.34-bin.jar -------------------------------------------------------------------------------- /VotingSystem/WebContent/WEB-INF/lib/servlet-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/WEB-INF/lib/servlet-api.jar -------------------------------------------------------------------------------- /VotingSystem/WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /VotingSystem/WebContent/assets/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/assets/css/reset.css -------------------------------------------------------------------------------- /VotingSystem/WebContent/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/assets/css/style.css -------------------------------------------------------------------------------- /VotingSystem/WebContent/assets/css/supersized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/assets/css/supersized.css -------------------------------------------------------------------------------- /VotingSystem/WebContent/assets/img/backgrounds/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/assets/img/backgrounds/1.jpg -------------------------------------------------------------------------------- /VotingSystem/WebContent/assets/js/jquery-1.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/assets/js/jquery-1.8.2.min.js -------------------------------------------------------------------------------- /VotingSystem/WebContent/assets/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/assets/js/scripts.js -------------------------------------------------------------------------------- /VotingSystem/WebContent/assets/js/supersized-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/assets/js/supersized-init.js -------------------------------------------------------------------------------- /VotingSystem/WebContent/assets/js/supersized.3.2.7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/assets/js/supersized.3.2.7.min.js -------------------------------------------------------------------------------- /VotingSystem/WebContent/contact.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/contact.jsp -------------------------------------------------------------------------------- /VotingSystem/WebContent/images/bg-footer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/images/bg-footer.gif -------------------------------------------------------------------------------- /VotingSystem/WebContent/images/bg-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/images/bg-header.gif -------------------------------------------------------------------------------- /VotingSystem/WebContent/images/bg-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/images/bg-menu.gif -------------------------------------------------------------------------------- /VotingSystem/WebContent/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/images/bg.jpg -------------------------------------------------------------------------------- /VotingSystem/WebContent/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/index.jsp -------------------------------------------------------------------------------- /VotingSystem/WebContent/jason-data.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/jason-data.jsp -------------------------------------------------------------------------------- /VotingSystem/WebContent/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/login.jsp -------------------------------------------------------------------------------- /VotingSystem/WebContent/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/register.jsp -------------------------------------------------------------------------------- /VotingSystem/WebContent/styles/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/styles/ie6.css -------------------------------------------------------------------------------- /VotingSystem/WebContent/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/styles/style.css -------------------------------------------------------------------------------- /VotingSystem/WebContent/vote-stats.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/vote-stats.jsp -------------------------------------------------------------------------------- /VotingSystem/WebContent/vote.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/WebContent/vote.jsp -------------------------------------------------------------------------------- /VotingSystem/build/classes/edu/npu/votingsystem/database/VotingBin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/build/classes/edu/npu/votingsystem/database/VotingBin.class -------------------------------------------------------------------------------- /VotingSystem/build/classes/edu/npu/votingsystem/domain/Register.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/build/classes/edu/npu/votingsystem/domain/Register.class -------------------------------------------------------------------------------- /VotingSystem/build/classes/edu/npu/votingsystem/domain/Vote.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/build/classes/edu/npu/votingsystem/domain/Vote.class -------------------------------------------------------------------------------- /VotingSystem/build/classes/edu/npu/votingsystem/servlets/JasonServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/build/classes/edu/npu/votingsystem/servlets/JasonServlet.class -------------------------------------------------------------------------------- /VotingSystem/build/classes/edu/npu/votingsystem/servlets/LoginServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/build/classes/edu/npu/votingsystem/servlets/LoginServlet.class -------------------------------------------------------------------------------- /VotingSystem/build/classes/edu/npu/votingsystem/servlets/LogoutServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/build/classes/edu/npu/votingsystem/servlets/LogoutServlet.class -------------------------------------------------------------------------------- /VotingSystem/build/classes/edu/npu/votingsystem/servlets/RegistrationServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/build/classes/edu/npu/votingsystem/servlets/RegistrationServlet.class -------------------------------------------------------------------------------- /VotingSystem/build/classes/edu/npu/votingsystem/servlets/VotingServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/build/classes/edu/npu/votingsystem/servlets/VotingServlet.class -------------------------------------------------------------------------------- /VotingSystem/src/edu/npu/votingsystem/database/VotingBin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/src/edu/npu/votingsystem/database/VotingBin.java -------------------------------------------------------------------------------- /VotingSystem/src/edu/npu/votingsystem/domain/Register.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/src/edu/npu/votingsystem/domain/Register.java -------------------------------------------------------------------------------- /VotingSystem/src/edu/npu/votingsystem/domain/Vote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/src/edu/npu/votingsystem/domain/Vote.java -------------------------------------------------------------------------------- /VotingSystem/src/edu/npu/votingsystem/servlets/JasonServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/src/edu/npu/votingsystem/servlets/JasonServlet.java -------------------------------------------------------------------------------- /VotingSystem/src/edu/npu/votingsystem/servlets/LoginServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/src/edu/npu/votingsystem/servlets/LoginServlet.java -------------------------------------------------------------------------------- /VotingSystem/src/edu/npu/votingsystem/servlets/LogoutServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/src/edu/npu/votingsystem/servlets/LogoutServlet.java -------------------------------------------------------------------------------- /VotingSystem/src/edu/npu/votingsystem/servlets/RegistrationServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/src/edu/npu/votingsystem/servlets/RegistrationServlet.java -------------------------------------------------------------------------------- /VotingSystem/src/edu/npu/votingsystem/servlets/VotingServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchirkute/Java-Online-Voting-System-Project/HEAD/VotingSystem/src/edu/npu/votingsystem/servlets/VotingServlet.java --------------------------------------------------------------------------------