Fail_login.jsp Sample
This topic inludes the source code for the Fail_login.jsp Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebApp/security/formBasedLogin/login_pages/
Sample Source Code
01 <!--Generated by WebLogic Workshop-->
02 <%@ page language="java" contentType="text/html;charset=UTF-8"%>
03 <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
04 <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
05 <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
06 <netui:html>
07 <head>
08 <title>Login failed</title>
09 </head>
10 <body>
11 <h2>Sorry, your user name and password were not recognized.</h2>
12 <p><b><a href="login.jsp">try again</a></b>
13 </body>
14 </netui:html>
|