document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <%--
  2.    Document   : index
  3.    Created on : 2011-09-12, 18:15:02
  4.    Author     : Kamil
  5. --%>
  6.  
  7. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  8. <%@page contentType="text/html" pageEncoding="UTF-8" session="true"%>
  9. <!DOCTYPE html>
  10. <html>
  11.     <head>
  12.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  13.         <title>Witaj w naszym internetowym sklepie</title>
  14.         <link rel="stylesheet" type="text/css"  href="css/style.css" ></link>
  15.     </head>
  16.     <body>
  17.  
  18.         <c:choose>
  19.             <c:when test="${not (empty sessionScope.User)}">
  20.                 <c:forEach var="user" items="${sessionScope.User}"  >
  21.                     <h1> <li>   ${user.name} ${user.t} </li> </h1>
  22.                 </c:forEach>
  23.             </c:when>
  24.  
  25.             <c:otherwise>
  26.                 Blad
  27.             </c:otherwise>
  28.         </c:choose>
  29.  
  30.     </body>
  31. </html>
');