java/nekurak.net-web/web/WEB-INF/casti/pridatPodnik.jsp
author František Kučera <franta-hg@frantovo.cz>
Thu Feb 25 09:10:01 2010 +0100 (2010-02-25)
changeset 41 2c3451cc396c
parent 40 67d332d48562
child 42 77c8271add7d
permissions -rw-r--r--
Formulářová autentizace + odhlašování.
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
     3 	  xmlns:c="http://java.sun.com/jsp/jstl/core"
     4 	  xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"
     5 	  xmlns:fn="http://java.sun.com/jsp/jstl/functions"
     6 	  version="2.0">
     7 
     8     <jsp:useBean id="podnik" class="cz.frantovo.nekurak.dto.Podnik" scope="request"/>
     9     <jsp:useBean id="pridatPodnik" class="cz.frantovo.nekurak.web.PridatPodnik" scope="request"/>
    10 
    11     <h1>Přidání nového podniku</h1>
    12 
    13     <c:choose>
    14 	<c:when test="${param.akcePridat == 'pridej'}">
    15 	    <jsp:setProperty name="podnik" property="*"/>
    16 	    <jsp:setProperty name="pridatPodnik" property="podnik" value="${podnik}"/>
    17 	    <c:if test="${pridatPodnik.pridano}">
    18 		<p>Podnik byl přidán.</p>
    19 	    </c:if>
    20 	</c:when>
    21 	<c:otherwise>
    22 	    <form method="post" action="?akce=pridatPodnik&amp;amp;akcePridat=pridej">
    23 		<fieldset>
    24 		    <label>Název: <input type="text" name="nazev" maxlength="255"/></label><br/>
    25 		    <label>Popis: <input type="text" name="popis" maxlength="255"/></label><br/>
    26 		    <label title="www stránka">URL: <input type="text" name="url" maxlength="255"/></label><br/>
    27 		    <label>Ulice: <input type="text" name="ulice" maxlength="64"/></label><br/>
    28 		    <label title="číslo popisné">č.p.: <input type="text" name="cisloPopisne" maxlength="5"/></label><br/>
    29 		    <label>Město: <input type="text" name="mesto" maxlength="64"/></label><br/>
    30 		    <button value="submit">Přidat podnik</button>
    31 		</fieldset>
    32 	    </form>
    33 	</c:otherwise>
    34     </c:choose>
    35 
    36 
    37 
    38 
    39 </jsp:root>