Advertisement
Guest User

Untitled

a guest
May 6th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.77 KB | None | 0 0
  1. <%--
  2.    Document   : home.jsp
  3.    Created on : May 6, 2016, 10:23:00 AM
  4.    Author     : Lazar
  5. --%>
  6.  
  7. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  8. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  9. <!DOCTYPE html>
  10. <html>
  11.     <head>
  12.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  13.         <title>HOME</title>
  14.     </head>
  15.     <body>
  16.         <h1>Log In Form</h1>
  17.         <br>
  18.         <c:if test="${not empty greska}">
  19.             <p style="color: red;">${greska}</p>
  20.         </c:if>
  21.         <br> <hr>
  22.  
  23.     <from action="Login" method="POST">
  24.         Username:<input type ="text" name="username" value="${validuser}" placeholder="Username"/><br> <br>
  25.         Password: <input type ="PASSWORD" name="password"  placeholder="Password" /> <br> <br>
  26.  
  27.         <input type="submit" value="Log In"/>
  28.  
  29.         <input type="RESET" value="Reset!"/>
  30.     </from>
  31.     <hr>
  32.  
  33.     <c:if test="${not empty predstave}">
  34.         <table  border="1">
  35.             <tr>
  36.                 <th>IDpred</th>
  37.                 <th>Naziv</th>
  38.                 <th>Rezija</th>
  39.                 <th>Glumci</th>
  40.                 <th>Datum</th>
  41.                 <th>Pozoriste</th>
  42.             </tr>
  43.  
  44.             <c:forEach var="i" items="${predstave}">
  45.                 <tr>
  46.                     <td>${i.idpred}</td>
  47.                     <td>${i.naziv}</td>
  48.                     <td>${i.rezija}</td>
  49.                     <td>${i.glumci}</td>
  50.                     <td>${i.datum}</td>
  51.                     <td>${i.pozoriste}</td>
  52.  
  53.  
  54.                 </tr>
  55.  
  56.             </c:forEach>
  57.         </table>
  58.     </c:if>
  59.     <c:if test="${empty predstave}">
  60.         <p style="color:red;">Nema predstave za sledecu nedelju!</p>
  61.     </c:if>
  62.  
  63.  
  64.  
  65. </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement