From 87cc1ed60735a419a3ea23f20614fc0a3f9bab60 Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Fri, 15 Apr 2011 17:18:51 -0400
Subject: [PATCH] Settings overhaul. Fixes to authentication. Bind interface feature.
---
src/com/gitblit/wicket/LoginPage.html | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/src/com/gitblit/wicket/LoginPage.html b/src/com/gitblit/wicket/LoginPage.html
index adbe64f..7108edb 100644
--- a/src/com/gitblit/wicket/LoginPage.html
+++ b/src/com/gitblit/wicket/LoginPage.html
@@ -17,17 +17,21 @@
<body onload="document.getElementById('username').focus();">
<div>
<center>
- <img wicket:id="logo" /><br/>
+ <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/>
- Username <input type="text" id="username" wicket:id="username" value=""/>
+ <wicket:message key="gb.username"></wicket:message>
+ <input type="text" id="username" wicket:id="username" value=""/>
<p/>
- Password <input type="password" wicket:id="password" value=""/>
+ <wicket:message key="gb.password"></wicket:message>
+ <input type="password" wicket:id="password" value=""/>
<p/>
- <input type="submit" value="Login" />
+ <input type="submit" value="Login" wicket:message="value:gb.login" />
<div style="background-color:#c7c7c7" wicket:id="feedback"></div>
</form>
</div>
--
Gitblit v1.9.1