mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Cleanup type declaration, colors
This commit is contained in:
parent
861533fcc1
commit
ae720586a4
@ -1,70 +1,74 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML>
|
||||
<!-- BEGIN login_form -->
|
||||
<HEAD>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<meta name="AUTHOR" content="phpGroupWare http://www.phpgroupware.org">
|
||||
<meta name="description" content="phpGroupWare">
|
||||
<meta name="keywords" content="phpGroupWare login screen">
|
||||
<style type="text/css">
|
||||
a { text-decoration:none; }
|
||||
A:link{ text-decoration:none; color: #336699; }
|
||||
A:visted{ text-decoration:none; color: #336699; }
|
||||
A:active{ text-decoration:none; color: #ff0000; }
|
||||
A:hover{ text-decoration:none; color: #cc0000; }
|
||||
td {text-decoration:none; color: #ffffff; }
|
||||
body { margin-top: 0px; margin-right: 0px; margin-left: 0px; font-family: "Arial, Helvetica, san-serif" }
|
||||
.tablink { color: #000000; }
|
||||
</style>
|
||||
<title>{website_title} - Login</title>
|
||||
</head>
|
||||
<!-- idsociety body tags continue into navbar.tpl, so the closing bracket here is there END Head -->
|
||||
<body bgcolor="#cccccc" alink="#ff0000" link="#336699" vlink="#336699">
|
||||
|
||||
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<META name="AUTHOR" content="phpGroupWare http://www.phpgroupware.org">
|
||||
<META NAME="description" CONTENT="phpGroupWare login screen">
|
||||
<META NAME="keywords" CONTENT="phpGroupWare login screen">
|
||||
|
||||
<TITLE>{website_title} - Login</TITLE>
|
||||
</HEAD>
|
||||
|
||||
<BODY bgcolor="#FFFFFF">
|
||||
<A href="http://www.phpgroupware.org"><img src="phpGroupWare.jpg" alt="phpGroupWare" border="0"></a>
|
||||
<a href="http://www.phpgroupware.org"><img src="phpgwapi/templates/{template_set}/images/logo.gif" alt="phpGroupWare" border="0"></a>
|
||||
<p> </p>
|
||||
<CENTER>{lang_message}</CENTER>
|
||||
<center>{lang_message}</center>
|
||||
<p> </p>
|
||||
|
||||
<TABLE bgcolor="#000000" border="0" cellpadding="0" cellspacing="0" width="60%" align="CENTER">
|
||||
<TR>
|
||||
<TD>
|
||||
<TABLE border="0" width="100%" bgcolor="#486591" cellpadding="2" cellspacing="1">
|
||||
<TR bgcolor="#486591">
|
||||
<TD align="LEFT">
|
||||
<font color="#fefefe"> {lang_phpgw_login}</font>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR bgcolor="#e6e6e6">
|
||||
<TD valign="BASELINE">
|
||||
|
||||
<FORM method="post" action="{login_url}">
|
||||
<TABLE border="0" align="CENTER" bgcolor="#486591" width="100%" cellpadding="0" cellspacing="0">
|
||||
<TR bgcolor="#e6e6e6">
|
||||
<TD colspan="3" align="CENTER">
|
||||
{cd}
|
||||
</TD>
|
||||
</TR>
|
||||
<TR bgcolor="#e6e6e6">
|
||||
<TD align="RIGHT"><font color="#000000">{lang_username}:</font></TD>
|
||||
<TD align="RIGHT"><input name="login" value="{cookie}"></TD>
|
||||
<TD align="LEFT"> @ <select name="logindomain">{select_domain}</select></TD>
|
||||
</TR>
|
||||
<TR bgcolor="#e6e6e6">
|
||||
<TD align="RIGHT"><font color="#000000">{lang_password}:</font></TD>
|
||||
<TD align="RIGHT"><input name="passwd" type="password" onChange="this.form.submit()"></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR bgcolor="#e6e6e6">
|
||||
<TD colspan="3" align="CENTER">
|
||||
<input type="submit" value="{lang_login}" name="submitit">
|
||||
</TD>
|
||||
</TR>
|
||||
<TR bgcolor="#e6e6e6">
|
||||
<TD colspan="3" align="RIGHT">
|
||||
<font color="#000000" size="-1">{version}</font>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</FORM>
|
||||
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<table border="0" align="center" width="40%" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" width="100%" cellpadding="2" cellspacing="1">
|
||||
<tr bgcolor="#525252">
|
||||
<td align="left" valign="middle"> phpGroupWare</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="baseline">
|
||||
<form method="post" action="{login_url}">
|
||||
<table border="0" align="CENTER" bgcolor="#adadad" width="100%" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="3" align="CENTER">
|
||||
{cd}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="RIGHT"><font color="#000000">{lang_username}:</font></td>
|
||||
<td align="RIGHT"><input name="login" value="{cookie}"></td>
|
||||
<td align="LEFT"> <select name="logindomain">{select_domain}</select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="RIGHT"><font color="#000000">{lang_password}:</font></td>
|
||||
<td align="RIGHT"><input name="passwd" type="password" onChange="this.form.submit()"></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="CENTER">
|
||||
<input type="submit" value="{lang_login}" name="submitit">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="RIGHT">
|
||||
<font color="#000000" size="-1">{version}</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- END login_form -->
|
||||
</HTML>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user