source: VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/pages/AuthenticationStatePanel.html @ 5577

Last change on this file since 5577 was 5577, checked in by Twan Goosen, 10 years ago

Styling of auth state panel
Refs #594

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml"
5      xmlns:wicket="http://wicket.apache.org/">
6    <head />
7    <body>
8        <wicket:panel>
9            <div wicket:id="login"></div>
10            <wicket:fragment wicket:id="loginFragment">
11                <li class="unauthenticated">
12                    <a wicket:id="loginLink" id="login" class="glyphicon glyphicon-log-in" href="#">
13                        <span>LOGIN</span>
14                    </a>
15                </li>
16            </wicket:fragment>
17
18            <div wicket:id="logout"></div>
19            <wicket:fragment wicket:id="logoutFragment">
20                <li class="authenticated">
21                    <span wicket:id="username">username</span>
22                    <!--<a wicket:id="logoutLink" id="logout" class="glyphicon glyphicon-log-out" href="#"><span>LOGOUT</span></a>-->
23                </li>
24            </wicket:fragment>
25        </wicket:panel>
26    </body>
27</html>
Note: See TracBrowser for help on using the repository browser.