login.html < html > < head > < title ></ title > < meta http-equiv ="Content-Type" content ="text/html; charset=UTF-8" > </ head > < body > < form method ="post" action ="login" > User Name: < input type ="text" name ="name" />< br /> Password: < input type ="password" name ="pass" />< br /> < input type ="submit" value ="login" /> </ form > </ body > </ html > login.java package Code; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * * @author Dilip */ public class login extends ...