27 lines
553 B
Plaintext
27 lines
553 B
Plaintext
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
|
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
|
|
<%@ page session="true" %>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<title><fmt:message key="title" /></title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
Soumission OK
|
|
|
|
<c:if test="${fileUploaded}">
|
|
<p>File uploaded succesfully.</p>
|
|
<c:if test="${!empty(file)}">
|
|
<pre style="border: solid 1px;">${file}</pre>
|
|
</c:if>
|
|
</c:if>
|
|
|
|
<a href="<c:url value="main.htm"/>">Home</a>
|
|
|
|
</body>
|
|
|
|
</html> |