├── .classpath ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.core.resources.prefs ├── 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 └── src └── main ├── java ├── controller │ ├── Reg_control.java │ └── login_controller.java ├── model │ ├── Reg_model.java │ └── log_model.java └── servlet │ ├── Log_serv.java │ └── Reg_serv.java └── webapp ├── Gp.css ├── Gp.html ├── Gp.js ├── META-INF └── MANIFEST.MF ├── WEB-INF └── web.xml ├── images ├── img-1.png ├── img-2.png ├── img-3.png ├── img-4.png ├── img-5.png ├── img-6.png ├── img-7.png ├── img-8.png └── que_icon.svg ├── index.css ├── index.html ├── index.js ├── jspcode.jsp └── sudo.png /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /src/main/java/controller/Reg_control.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/java/controller/Reg_control.java -------------------------------------------------------------------------------- /src/main/java/controller/login_controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/java/controller/login_controller.java -------------------------------------------------------------------------------- /src/main/java/model/Reg_model.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/java/model/Reg_model.java -------------------------------------------------------------------------------- /src/main/java/model/log_model.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/java/model/log_model.java -------------------------------------------------------------------------------- /src/main/java/servlet/Log_serv.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/java/servlet/Log_serv.java -------------------------------------------------------------------------------- /src/main/java/servlet/Reg_serv.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/java/servlet/Reg_serv.java -------------------------------------------------------------------------------- /src/main/webapp/Gp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/Gp.css -------------------------------------------------------------------------------- /src/main/webapp/Gp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/Gp.html -------------------------------------------------------------------------------- /src/main/webapp/Gp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/Gp.js -------------------------------------------------------------------------------- /src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/images/img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/images/img-1.png -------------------------------------------------------------------------------- /src/main/webapp/images/img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/images/img-2.png -------------------------------------------------------------------------------- /src/main/webapp/images/img-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/images/img-3.png -------------------------------------------------------------------------------- /src/main/webapp/images/img-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/images/img-4.png -------------------------------------------------------------------------------- /src/main/webapp/images/img-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/images/img-5.png -------------------------------------------------------------------------------- /src/main/webapp/images/img-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/images/img-6.png -------------------------------------------------------------------------------- /src/main/webapp/images/img-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/images/img-7.png -------------------------------------------------------------------------------- /src/main/webapp/images/img-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/images/img-8.png -------------------------------------------------------------------------------- /src/main/webapp/images/que_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/images/que_icon.svg -------------------------------------------------------------------------------- /src/main/webapp/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/index.css -------------------------------------------------------------------------------- /src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/index.html -------------------------------------------------------------------------------- /src/main/webapp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/index.js -------------------------------------------------------------------------------- /src/main/webapp/jspcode.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/jspcode.jsp -------------------------------------------------------------------------------- /src/main/webapp/sudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k7003hari/elite-memory/HEAD/src/main/webapp/sudo.png --------------------------------------------------------------------------------