| <%-- |
| /* |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| --%> |
| <%@ page import='org.apache.wookie.helpers.FlashMessage' %> |
| <html> |
| <head> |
| <title>Results</title> |
| <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
| <link href="../style.css" rel="stylesheet" type="text/css"> |
| </head> |
| <body> |
| <table width="800" height="100%" border="0" align="center" cellpadding="0" cellspacing="0"> |
| <tr align="center" valign="middle"> |
| <td height="40" align="center" valign="middle" class="legend"> |
| <h2>Widget Server Administration</h2> |
| </td> |
| </tr> |
| <tr> |
| <td height="40" align="center" class="legend"><a href="index.jsp" class="hypercolourwhite">menu</a></td> |
| </tr> |
| <tr> |
| <td valign="top" bgcolor="#FFFFFF" class="tbody"> |
| <h3>Results</h3> |
| |
| <% String errors = FlashMessage.getErrors(session, request);%> |
| <% String messages = FlashMessage.getMessages(session, request);%> |
| <% |
| if(errors!=null){%> |
| <font color=red> |
| <%=errors%> |
| </font> |
| <%} |
| %><br><% |
| if(messages!=null){%> |
| <font color=green> |
| <%=messages%> |
| </font> |
| <%}%> |
| </td> |
| </tr> |
| <tr> |
| <td height="40" align="center" class="legend"><a href="index.jsp" class="hypercolourwhite">menu</a></td> |
| </tr> |
| </table> |
| |
| </body> |
| </html> |
| <% FlashMessage.clearErrorsAndMessages(session);%> |