Skip to content
Snippets Groups Projects
aboutDialog.xhtml 1 KiB
Newer Older
Nils Christian Ehmke's avatar
Nils Christian Ehmke committed
<ui:composition 
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui">     

    <p:dialog header="About..." resizable="false" modal="true"
Nils Christian Ehmke's avatar
Nils Christian Ehmke committed
        <h:form>
            <img src="../img/kieker-logo-transparent.png" />
Nils Christian Ehmke's avatar
Nils Christian Ehmke committed
            <h:outputText value="Kieker.WebGUI" />
            <br />
            <br />
            <h:outputText value="Version: 1.0-SNAPSHOT" />
            <br />
            <h:outputText value="Copyright (c) 2012 Kieker Project" />
            <br />
            <br />
            <a href="http://www.kieker-monitoring.net/">http://www.kieker-monitoring.net/</a>
            <hr/>
            <div style="text-align: right">
                <p:commandButton value="Ok" oncomplete="aboutDlg.hide()" />
Nils Christian Ehmke's avatar
Nils Christian Ehmke committed
        </h:form>
    </p:dialog>
</ui:composition>