Create a web page called login.html. This page should contain a form with fields for the user's first name and last name. Your form should also contain combo boxes that allow the user to specify the day and month of his or her birthday. Your form should contain submit and clear buttons.
The form should be handled by a JSP page called greeter.jsp. (This is the action attribute of the form.) Greeter.jsp simply prints "Hello " followed by the first and last names of the user. If it happens to be the user's birthday, greeter.jsp also prints "Happy Birthday".
Hint: create an instance of java.util.GregorianCalendar called today. Use the get method to extract and compare the java.util.Calendar.MONTH and java.util.Calendar.DAY_OF_MONTH fields to the dates specified by the user.
Warning: request.getParameter() returns a String. To convert this into an int use the following method:
int day = new Integer(request.getParameter("day"));