Skip to content

Java Servlet backend with Tomcat & MySQL for simple login system and display basic user information

Notifications You must be signed in to change notification settings

nehasoni05/Login-Or-CreateAccount

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Login-Or-CreateAccount

Java Servlet backend with Tomcat; MySQL for simple login system and display basic user information Most web apps start with system Login. This mini-project serves both purposes by Building backend with Tomcat 9 & Oracle 11g for simple Login system and Displaying user information.

See how it works->

  1. First a Login page will open and if you already have an account (i.e you enter an entry in your database then it will fetch information from userinfo table)

  1. If you enter wrong username or password it will show alert.

3)If you don't have an account (i.e you didn't enter entry in database) click on create account.

After it you will navigate to Login Page again and to see user information of new user you have to enter username and password.


Database commands

Create two tables in oracle database->

Table 1-> Create loginIfo table->
create table loginIfo(username varchar(20),password varchar(20));

Table 2-> Create userinfo table->
create table userinfo(username varchar(20),name varchar(20),gender varchar(10),age number,salary number);

About

Java Servlet backend with Tomcat & MySQL for simple login system and display basic user information

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published