Nothing Special   »   [go: up one dir, main page]

Home

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

home.

jsp
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %> <jsp:useBean id="account" class="webbeans.LoginAccount" scope="session"> <jsp:setProperty name="account" property="*" /> </jsp:useBean>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> </head> <body> <% if(account.isValid()){ session.setAttribute("username",account.getUsername()); out.println("Your login credentials are: "); out.println("<br />Username: " + account.getUsername()); out.println("<br />Password: " + account.getPasswd()); } else { out.println("<h2>Wrong Username/Password</h2>"); } %> </body> </html>

You might also like