01 <%@ page language="java" contentType="text/html;charset=UTF-8"%>
02 <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
03 <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
04 <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
05 <netui:html>
06 <head>
07 <title>
08 index.jsp
09 </title>
10 </head>
11 <body>
12 <jsp:include page="/resources/jsp/header.jsp"/> <br/>
13 <h3>Nesting/Nested Page Flows Sample</h3>
14 <p>This is the <i>nesting</i> Page Flow.
15 <p>The link below will take you to the nested Page Flow, where you will fill out
16 user profile information.
17 <p>When you submit the profile, the data will be returned to this, the nesting, Page Flow.
18 <blockquote>
19 <netui:anchor action="toNestedPageFlow">Make Profile</netui:anchor>
20 </blockquote>
21 </body>
22 </netui:html>
|