minor style update for header line
This commit is contained in:
parent
e3e7cf27dd
commit
d82b95335f
|
@ -305,7 +305,7 @@ class selfServiceProfile {
|
|||
$this->LDAPUser = "";
|
||||
$this->LDAPPassword = "";
|
||||
$this->searchAttribute = "uid";
|
||||
$this->pageHeader = '<table border=0 width="100%" class="lamHeader"><tr><td align="left" height="30"><a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a></td></tr></table><br>';
|
||||
$this->pageHeader = '<table border=0 width="100%" class="lamHeader ui-corner-all"><tr><td align="left" height="30"><a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a></td></tr></table><br>';
|
||||
$this->additionalCSS = '';
|
||||
$this->loginCaption = "Welcome to LAM self service. Please enter your user name and password.";
|
||||
$this->loginAttributeText = "User name";
|
||||
|
|
|
@ -62,7 +62,15 @@ echo $_SESSION['header'];
|
|||
echo _("Login");
|
||||
?>
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../style/layout.css">
|
||||
<?php
|
||||
// include all CSS files
|
||||
$cssDirName = dirname(__FILE__) . '/../../style';
|
||||
$cssDir = dir($cssDirName);
|
||||
while ($cssEntry = $cssDir->read()) {
|
||||
if (substr($cssEntry, strlen($cssEntry) - 4, 4) != '.css') continue;
|
||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/" . $cssEntry . "\">\n";
|
||||
}
|
||||
?>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../graphics/favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
|
@ -89,7 +97,7 @@ echo $_SESSION['header'];
|
|||
echo "//-->\n";
|
||||
echo "</script>\n";
|
||||
?>
|
||||
<table border=0 width="100%" class="lamHeader">
|
||||
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
||||
<tr>
|
||||
<td align="left" height="30">
|
||||
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a>
|
||||
|
|
|
@ -145,7 +145,7 @@ foreach ($jsFiles as $jsEntry) {
|
|||
echo "<script type=\"text/javascript\" src=\"../lib/" . $jsEntry . "\"></script>\n";
|
||||
}
|
||||
?>
|
||||
<table border=0 width="100%" class="lamHeader">
|
||||
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
||||
<tr>
|
||||
<td align="left" height="30">
|
||||
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a>
|
||||
|
|
|
@ -123,7 +123,7 @@ foreach ($jsFiles as $jsEntry) {
|
|||
}
|
||||
|
||||
?>
|
||||
<table border=0 width="100%" class="lamHeader">
|
||||
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
||||
<tr>
|
||||
<td align="left" height="30">
|
||||
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a>
|
||||
|
|
|
@ -141,7 +141,7 @@ foreach ($jsFiles as $jsEntry) {
|
|||
}
|
||||
|
||||
?>
|
||||
<table border=0 width="100%" class="lamHeader">
|
||||
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
||||
<tr>
|
||||
<td align="left" height="30">
|
||||
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a>
|
||||
|
|
|
@ -50,11 +50,19 @@ echo $_SESSION['header'];
|
|||
echo _("Configuration overview");
|
||||
?>
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../style/layout.css">
|
||||
<?php
|
||||
// include all CSS files
|
||||
$cssDirName = dirname(__FILE__) . '/../../style';
|
||||
$cssDir = dir($cssDirName);
|
||||
while ($cssEntry = $cssDir->read()) {
|
||||
if (substr($cssEntry, strlen($cssEntry) - 4, 4) != '.css') continue;
|
||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/" . $cssEntry . "\">\n";
|
||||
}
|
||||
?>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../graphics/favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
<table border=0 width="100%" class="lamHeader">
|
||||
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
||||
<tr>
|
||||
<td align="left" height="30">
|
||||
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a>
|
||||
|
|
|
@ -70,7 +70,15 @@ echo $_SESSION['header'];
|
|||
echo _("Login");
|
||||
?>
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../style/layout.css">
|
||||
<?php
|
||||
// include all CSS files
|
||||
$cssDirName = dirname(__FILE__) . '/../../style';
|
||||
$cssDir = dir($cssDirName);
|
||||
while ($cssEntry = $cssDir->read()) {
|
||||
if (substr($cssEntry, strlen($cssEntry) - 4, 4) != '.css') continue;
|
||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/" . $cssEntry . "\">\n";
|
||||
}
|
||||
?>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../graphics/favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
|
@ -97,7 +105,7 @@ echo $_SESSION['header'];
|
|||
echo "<script type=\"text/javascript\" src=\"../lib/" . $jsEntry . "\"></script>\n";
|
||||
}
|
||||
?>
|
||||
<table border=0 width="100%" class="lamHeader">
|
||||
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
||||
<tr>
|
||||
<td align="left" height="30">
|
||||
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a>
|
||||
|
|
|
@ -134,11 +134,19 @@ echo $_SESSION['header'];
|
|||
echo _("Edit general settings");
|
||||
?>
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../style/layout.css">
|
||||
<?php
|
||||
// include all CSS files
|
||||
$cssDirName = dirname(__FILE__) . '/../../style';
|
||||
$cssDir = dir($cssDirName);
|
||||
while ($cssEntry = $cssDir->read()) {
|
||||
if (substr($cssEntry, strlen($cssEntry) - 4, 4) != '.css') continue;
|
||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/" . $cssEntry . "\">\n";
|
||||
}
|
||||
?>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../graphics/favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
<table border=0 width="100%" class="lamHeader">
|
||||
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
||||
<tr>
|
||||
<td align="left" height="30">
|
||||
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a>
|
||||
|
|
|
@ -122,7 +122,7 @@ foreach ($jsFiles as $jsEntry) {
|
|||
}
|
||||
|
||||
?>
|
||||
<table border=0 width="100%" class="lamHeader">
|
||||
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
||||
<tr>
|
||||
<td align="left" height="30">
|
||||
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a>
|
||||
|
|
|
@ -52,11 +52,19 @@ echo $_SESSION['header'];
|
|||
echo _("Profile management");
|
||||
?>
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../style/layout.css">
|
||||
<?php
|
||||
// include all CSS files
|
||||
$cssDirName = dirname(__FILE__) . '/../../style';
|
||||
$cssDir = dir($cssDirName);
|
||||
while ($cssEntry = $cssDir->read()) {
|
||||
if (substr($cssEntry, strlen($cssEntry) - 4, 4) != '.css') continue;
|
||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/" . $cssEntry . "\">\n";
|
||||
}
|
||||
?>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../../graphics/favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
<table border=0 width="100%" class="lamHeader">
|
||||
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
||||
<tr>
|
||||
<td align="left" height="30">
|
||||
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a>
|
||||
|
|
|
@ -150,7 +150,15 @@ function display_LoginPage($config_object) {
|
|||
echo $_SESSION["header"];
|
||||
?>
|
||||
<title>LDAP Account Manager</title>
|
||||
<link rel="stylesheet" type="text/css" href="../style/layout.css">
|
||||
<?php
|
||||
// include all CSS files
|
||||
$cssDirName = dirname(__FILE__) . '/../style';
|
||||
$cssDir = dir($cssDirName);
|
||||
while ($cssEntry = $cssDir->read()) {
|
||||
if (substr($cssEntry, strlen($cssEntry) - 4, 4) != '.css') continue;
|
||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../style/" . $cssEntry . "\">\n";
|
||||
}
|
||||
?>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../graphics/favicon.ico">
|
||||
</head>
|
||||
<body onload="focusLogin()">
|
||||
|
@ -185,7 +193,7 @@ function display_LoginPage($config_object) {
|
|||
echo "</script>\n";
|
||||
?>
|
||||
|
||||
<table border=0 width="100%" class="lamHeader">
|
||||
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
||||
<tr>
|
||||
<td align="left" height="30">
|
||||
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a>
|
||||
|
|
Loading…
Reference in New Issue