This commit is contained in:
ceb 2002-10-19 16:18:35 +00:00
parent e72d00ace1
commit caaaa987b6
2 changed files with 76 additions and 89 deletions

View File

@ -51,6 +51,13 @@ a:hover
width: 100%; width: 100%;
} }
table.login
{
margin-top: 150px;
width: 40%;
text-align: center;
}
.login .login
{ {
background-color: #80BBFF; background-color: #80BBFF;

View File

@ -24,9 +24,8 @@
<xsl:template match="login_standard"> <xsl:template match="login_standard">
<xsl:variable name="login_layout"><xsl:value-of select="login_layout"/></xsl:variable> <xsl:variable name="login_layout"><xsl:value-of select="login_layout"/></xsl:variable>
<table cellpadding="0" cellspacing="0" width="100%" height="100%"> <xsl:variable name="login_url"><xsl:value-of select="login_url"/></xsl:variable>
<tr> <p>
<td>
<a href="http://www.phpgroupware.org" target="_blank" onMouseout="window.status='';return true;"> <a href="http://www.phpgroupware.org" target="_blank" onMouseout="window.status='';return true;">
<xsl:attribute name="onMouseover"> <xsl:attribute name="onMouseover">
<xsl:text>window.status='</xsl:text> <xsl:text>window.status='</xsl:text>
@ -35,34 +34,24 @@
</xsl:attribute> </xsl:attribute>
<img src="phpgwapi/templates/{$login_layout}/images/logo.png" alt="phpGroupWare" border="0"/> <img src="phpgwapi/templates/{$login_layout}/images/logo.png" alt="phpGroupWare" border="0"/>
</a> </a>
</td> </p>
</tr> <p>
<tr> <xsl:value-of select="phpgw_loginscreen_message"/>
<td align="center"><xsl:value-of select="phpgw_loginscreen_message"/></td> </p>
</tr> <table cellpadding="2" cellspacing="0" align="center" class="login">
<tr>
<td valign="middle" align="center">
<table cellpadding="0" cellspacing="0" width="40%" class="login">
<xsl:choose> <xsl:choose>
<xsl:when test="loginscreen"> <xsl:when test="loginscreen">
<xsl:variable name="login_url"><xsl:value-of select="login_url"/></xsl:variable> <form name="login" method="post" action="{$login_url}">
<input type="hidden" name="passwd_type" value="text"/>
<xsl:variable name="cookie"><xsl:value-of select="cookie"/></xsl:variable> <xsl:variable name="cookie"><xsl:value-of select="cookie"/></xsl:variable>
<xsl:variable name="lang_login"><xsl:value-of select="lang_login"/></xsl:variable> <xsl:variable name="lang_login"><xsl:value-of select="lang_login"/></xsl:variable>
<tr> <tr>
<td> <td colspan="3" align="center"><b><xsl:value-of select="website_title"/></b></td>
<table width="100%" cellpadding="2" cellspacing="1" class="login">
<tr>
<td align="center"><b><xsl:value-of select="website_title"/></b></td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
<td>
<form name="login" method="post" action="{$login_url}">
<input type="hidden" name="passwd_type" value="text"/>
<table align="center" width="100%" cellpadding="2" cellspacing="2">
<tr>
<td colspan="3" align="center"><xsl:value-of disable-output-escaping="yes" select="msgbox"/></td> <td colspan="3" align="center"><xsl:value-of disable-output-escaping="yes" select="msgbox"/></td>
</tr> </tr>
<tr> <tr class="row_off">
<td width="33%" align="right"><xsl:value-of select="lang_username"/></td> <td width="33%" align="right"><xsl:value-of select="lang_username"/></td>
<td width="33%" align="center"><input name="login" value="{$cookie}"/></td> <td width="33%" align="center"><input name="login" value="{$cookie}"/></td>
<xsl:choose> <xsl:choose>
@ -74,22 +63,18 @@
</xsl:otherwise> </xsl:otherwise>
</xsl:choose> </xsl:choose>
</tr> </tr>
<tr> <tr class="row_off">
<td align="right"><xsl:value-of select="lang_password"/></td> <td align="right"><xsl:value-of select="lang_password"/></td>
<td align="center"><input name="passwd" type="password" onChange="this.form.submit()"/></td> <td align="center"><input name="passwd" type="password" onChange="this.form.submit()"/></td>
<td></td> <td></td>
</tr> </tr>
<tr> <tr class="row_off">
<td colspan="3" align="center"> <td colspan="3" align="center">
<input type="submit" value="{$lang_login}" name="submitit"/> <input type="submit" value="{$lang_login}" name="submitit"/>
</td> </td>
</tr> </tr>
</table>
</form>
</td>
</tr>
<tr> <tr>
<td align="center"> <td colspan="3" align="center">
<xsl:value-of select="lang_powered_by"/> <xsl:value-of select="lang_powered_by"/>
<a href="http://www.phpgroupware.org" target="blank" onMouseout="window.status='';return true;"> <a href="http://www.phpgroupware.org" target="blank" onMouseout="window.status='';return true;">
<xsl:attribute name="onMouseover"> <xsl:attribute name="onMouseover">
@ -102,9 +87,7 @@
<xsl:text> </xsl:text><xsl:value-of select="lang_version"/><xsl:text> </xsl:text><xsl:value-of select="phpgw_version"/> <xsl:text> </xsl:text><xsl:value-of select="lang_version"/><xsl:text> </xsl:text><xsl:value-of select="phpgw_version"/>
</td> </td>
</tr> </tr>
</table> </form>
</td>
</tr>
</xsl:when> </xsl:when>
<xsl:otherwise> <xsl:otherwise>
<tr> <tr>
@ -113,9 +96,6 @@
</xsl:otherwise> </xsl:otherwise>
</xsl:choose> </xsl:choose>
</table> </table>
</td>
</tr>
</table>
</xsl:template> </xsl:template>
<xsl:template match="domain_select"> <xsl:template match="domain_select">