James Moger
2011-04-16 01bd346efe98af0f05f23f897c0819d2df8d856c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"  
      xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"  
      xml:lang="en"  
      lang="en"> 
      
    <!-- Head with Wicket-controlled resources in this package -->
    <wicket:head>
           <title wicket:id="title">[page title]</title>
           <wicket:link>
               <link rel="stylesheet" type="text/css" href="resources/gitblit.css"/>
               <link rel="shortcut icon" href="resources/gitblt-favicon.png" type="image/png" />
           </wicket:link>
    </wicket:head>
    
 
    <body onload="document.getElementById('username').focus();">
    <div>
        <center>
            <wicket:link>
                <img src="resources/gitblt2.png" alt="Git:Blit"/><br/>
            </wicket:link>
            <span style="font-weight:bold;" wicket:id="name">[name]</span><br/>
 
            <div>
                <form style="text-align:center;" wicket:id="loginForm">
                    <p/>
                    <wicket:message key="gb.username"></wicket:message>
                    <input type="text" id="username" wicket:id="username" value=""/>
                    <p/>
                    <wicket:message key="gb.password"></wicket:message>
                    <input type="password"  wicket:id="password" value=""/>
                    <p/>
                    <input type="submit" value="Login" wicket:message="value:gb.login" />
                    <div style="background-color:#c7c7c7" wicket:id="feedback"></div>
                </form>
            </div>
        </center>
    </div>
    </body>
</html>