Zakládání podniků + HTTP autentizace.
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"
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"/>
11 <h1>Přidání nového podniku</h1>
14 <c:when test="${param.akcePridat == 'pridej'}">
15 <jsp:setProperty name="podnik" property="*"/>
16 <jsp:setProperty name="pridatPodnik" property="podnik" value="${podnik}"/>
18 <p>Název: ${pridatPodnik.podnik.nazev} / ${param.nazev}</p>
19 <p>Popis: ${pridatPodnik.podnik.popis}</p>
20 <p>URL: ${pridatPodnik.podnik.url}</p>
21 <p>Ulice: ${pridatPodnik.podnik.ulice}</p>
22 <p>č.p.: ${pridatPodnik.podnik.cisloPopisne}</p>
23 <p>Město: ${pridatPodnik.podnik.mesto}</p>
26 <c:if test="${pridatPodnik.pridano}">
27 <p>Podnik byl přidán.</p>
31 <form method="post" action="?akce=pridatPodnik&amp;akcePridat=pridej">
33 <label>Název: <input type="text" name="nazev" maxlength="255"/></label><br/>
34 <label>Popis: <input type="text" name="popis" maxlength="255"/></label><br/>
35 <label>URL: <input type="text" name="url" maxlength="255"/></label><br/>
36 <label>Ulice: <input type="text" name="ulice" maxlength="64"/></label><br/>
37 <label>č.p.: <input type="text" name="cisloPopisne" maxlength="5"/></label><br/>
38 <label>Město: <input type="text" name="mesto" maxlength="64"/></label><br/>
39 <button value="submit">Přidat podnik</button>