Advertisement
hoffmannm

changeDataForm

Dec 16th, 2013
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.73 KB | None | 0 0
  1. <section id="content">
  2.             <header>
  3.                 <h2></h2>
  4.             </header>
  5.            
  6.             <form method="post" action="/chiefChangeUserDataForm" th:object="${changeDataForm}">
  7.                 <table>
  8.                     <tr>
  9.                         <td><h3><label th:text="#{register.prename}" for="prename">Vorname</label></h3></td>
  10.                         <td><input id="prename" th:field="*{prename}" th:errorclass="fieldError" type="text" name="prename" /></td>
  11.                     </tr>
  12.                     <tr><td><p th:if="${#fields.hasErrors('prename')}" th:errors="*{prename}">Das Feld darf nicht leer sein.</p></td></tr>
  13.        
  14.                     <tr>
  15.                         <td><h3><label th:text="#{register.name}" for="name">Nachname</label></h3></td>
  16.                         <td><input id="name" th:field="*{name}" th:errorclass="fieldError" type="text" name="name" /></td>
  17.                     </tr>
  18.                     <tr><td><p th:if="${#fields.hasErrors('name')}" th:errors="*{name}">Das Feld darf nicht leer sein.</p></td></tr>
  19.        
  20.                     <tr>
  21.                         <td><h3><label th:text="#{register.age}" for="age">Alter</label></h3></td>
  22.                         <td><input id="age" th:field="*{age}" th:errorclass="fieldError" type="text" name="age" value="" /></td>
  23.                     </tr>
  24.                     <tr><td><p th:if="${#fields.hasErrors('age')}" th:errors="*{age}">Das Feld darf nicht leer sein.</p></td></tr>
  25.        
  26.                     <tr>
  27.                         <td><h3><label th:text="#{register.city}" for="city">Wohnort</label></h3></td>
  28.                         <td><input id="city" th:field="*{city}" th:errorclass="fieldError" type="text" name="city" /></td>
  29.                     </tr>
  30.                     <tr><td><p th:if="${#fields.hasErrors('city')}" th:errors="*{city}">Das Feld darf nicht leer sein.</p></td></tr>       
  31.            
  32.                     <tr>
  33.                         <td><h3><label th:text="#{register.zip}" for="zip">Postleitzahl</label></h3></td>
  34.                         <td><input id="zip" th:field="*{zip}" th:errorclass="fieldError" type="text" name="zip" /></td>
  35.                     </tr>
  36.                     <tr><td><p th:if="${#fields.hasErrors('city')}" th:errors="*{city}">Das Feld darf nicht leer sein.</p></td></tr>       
  37.        
  38.                     <tr>
  39.                         <td><h3><label th:text="#{register.street}" for="street">Straße</label></h3></td>
  40.                         <td><input id="street" th:field="*{street}" th:errorclass="fieldError" type="text" name="street" /></td>
  41.                     </tr>
  42.                     <tr><td><p th:if="${#fields.hasErrors('street')}" th:errors="*{street}">Das Feld darf nicht leer sein.</p></td></tr>
  43.        
  44.                     <tr>
  45.                         <td><h3><label th:text="#{register.nickname}" for="nickname">Benutzername</label></h3></td>
  46.                         <td><input id="nickname"  th:field="*{nickname}" th:errorclass="fieldError" type="text" name="nickname" /></td>
  47.                     </tr>
  48.                     <tr><td><p th:if="${#fields.hasErrors('nickname')}" th:errors="*{nickname}">Das Feld darf nicht leer sein.</p></td></tr>
  49.            
  50.                     <tr>
  51.                         <td></td>
  52.                         <td><input type="submit" th:value="#{register.submit}" value="Registrieren" /></td>
  53.                     </tr>
  54.                 </table>
  55.             </form>
  56.            
  57.         </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement