Skip to content
Snippets Groups Projects
AboutDialog.xhtml 1.16 KiB
Newer Older
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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:p="http://primefaces.org/ui">     

    <p:dialog header="#{localizedMessages.about}" resizable="false" modal="true" widgetVar="aboutDlg">
Nils Christian Ehmke's avatar
Nils Christian Ehmke committed
        <h:form>
            <img src="#{root}/img/kieker-logo-transparent.png" alt="Kieker-Logo" width="491" height="150" />
Nils Christian Ehmke's avatar
Nils Christian Ehmke committed
            <h:outputText value="Kieker.WebGUI" />
            <br />
            <br />
            <h:outputText value="Version: ${display_version}" />
Nils Christian Ehmke's avatar
Nils Christian Ehmke committed
            <br />
            <h:outputText value="Copyright (c) 2013 Kieker Project" />
Nils Christian Ehmke's avatar
Nils Christian Ehmke committed
            <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>