Create folder panel (forgot to add).
[photos] / src / main / java / org / wamblee / photos / wicket / CreateFolderPanel.html
1 <html
2         xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd">
3 <head>
4     <title>Wicket Quickstart Archetype Homepage</title>
5 </head>
6 <body>
7
8 <wicket:panel>
9     <form wicket:id="createFolderForm">
10         <table>
11             <tbody>
12             <tr>
13                 <td>
14                     <input wicket:id="name" type="text" size="40"/>
15                 </td>
16                 <td>
17                     <input type="submit" value="Create folder"/>
18                 </td>
19             </tr>
20             </tbody>
21         </table>
22     </form>
23 </wicket:panel>
24
25 </body>
26 </html>