From c7a721aad7c23640d59ad682854e066f4538436c Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 10 Nov 2011 07:56:07 -0500 Subject: [PATCH] Show busy cursors when executing workers --- src/com/gitblit/wicket/pages/RootPage.html | 18 ++++++++---------- 1 files changed, 8 insertions(+), 10 deletions(-) diff --git a/src/com/gitblit/wicket/pages/RootPage.html b/src/com/gitblit/wicket/pages/RootPage.html index 59a0fe1..a4dcb2c 100644 --- a/src/com/gitblit/wicket/pages/RootPage.html +++ b/src/com/gitblit/wicket/pages/RootPage.html @@ -8,20 +8,18 @@ <div class="topbar"> <div class="fill"> <div class="container"> - <a class="brand" title="gitblit homepage" href="http://gitblit.com/"> - <img src="gitblt_25.png" width="79" height="25" alt="gitblit" class="logo"/> + <a class="brand" wicket:id="rootLink"> + <img src="gitblt_25_white.png" width="79" height="25" alt="gitblit" class="logo"/> </a> - <ul class="nav"> - <li><a wicket:id="repositories"><wicket:message key="gb.repositories"></wicket:message></a></li> - <li><a wicket:id="users"><wicket:message key="gb.users"></wicket:message></a></li> - <li><a wicket:id="federation"><wicket:message key="gb.federation"></wicket:message></a></li> - </ul> + <span wicket:id="navPanel"></span> <form class="pull-right" wicket:id="loginForm"> - <input wicket:id="username" class="input-small" type="text" placeholder="Username"> - <input wicket:id="password" class="input-small" type="password" placeholder="Password"> - <button class="btn primary" type="submit">Sign in</button> + <div class="login"> + <input wicket:id="username" class="input-small" type="text" /> + <input wicket:id="password" class="input-small" type="password" /> + <button class="btn primary" type="submit"><wicket:message key="gb.login"></wicket:message></button> + </div> </form> </div> </div> -- Gitblit v1.9.1