James Moger
2015-12-10 63e4d9660de3f4c615a8e9444aaf3c3de128e77c
commit | author | age
ce048e 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
JM 2 <html xmlns="http://www.w3.org/1999/xhtml"  
3       xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"  
4       xml:lang="en"  
5       lang="en"> 
6
7 <wicket:extend>
71a347 8
ce048e 9 <body onload="document.getElementById('name').focus();">
JM 10     
11 <div class="container">
12     <!-- page header -->
13     <div class="title" style="font-size: 22px; color: rgb(0, 32, 96);padding: 3px 0px 7px;">
14         <span class="project"><wicket:message key="gb.newMilestone"></wicket:message></span>
15     </div>
16
17     <form style="padding-top:5px;" wicket:id="editForm">
18     <div class="row">
19     <div class="span12">
20         <!-- New Milestone Table -->
21         <table class="ticket">
22             <tr><th><wicket:message key="gb.milestone"></wicket:message></th><td class="edit"><input class="input-large" type="text" wicket:id="name" id="name"></input></td></tr>
71a347 23             <tr><th><wicket:message key="gb.due"></wicket:message></th><td class="edit"><input class="input-large" type="date" wicket:id="due"></input> &nbsp;<span class="help-inline" wicket:id="dueFormat"></span></td></tr>
ce048e 24         </table>
JM 25     </div>
26     </div>    
27
28     <div class="row">
29     <div class="span12">
30         <div class="form-actions"><input class="btn btn-appmenu" type="submit" value="Create" wicket:message="value:gb.create" wicket:id="create" /> &nbsp; <input class="btn" type="submit" value="Cancel" wicket:message="value:gb.cancel" wicket:id="cancel" /></div>
31     </div>
32     </div>
33     </form>
34 </div>
35 </body>
36 </wicket:extend>
37 </html>