Skip to content

Commit

Permalink
content added to ConfirmPage.jsp
Browse files Browse the repository at this point in the history
  • Loading branch information
iferminm committed Mar 9, 2012
1 parent 1e414e5 commit 18c7912
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion WebContent/ConfirmPage.jsp
Expand Up @@ -4,9 +4,40 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<link rel="Stylesheet" href="css/GeneralStyle.css" type="text/css" />
<title>Strigi Ontology Manager</title>
</head>
<body>
<%
String message = request.getParameter("message");
String link = request.getParameter("link");
%>
<div id="wrapper">
<div id="header">
<p> Este es el header</p>
</div>
<div id="menu">
<div id="menuitem">
<p><a href="PreAddResource.jsp">Add Resource</a></p>
</div>
<div id="menuitem">
<p><a href="ViewResources.jsp">View Resources</a></p>
</div>
<div id="menuitem">
<p><a href="AddAnnotation.jsp">Add Annotation</a></p>
</div>
<div id="menuitem">
<p><a href="ViewAnnotations.jsp">View Annotations</a></p>
</div>
</div>
<div id="contentwrapper">
<h3 id="confirm">Success</h3>
<br />
<p><%=message%></p>
<a href="<%=link%>">Add another one</a>
<a href="index.html">Finish</a>
</div>
</div>

</body>
</html>

0 comments on commit 18c7912

Please sign in to comment.