| 
                                                             Wednesday 23 July 2003 5:07:09 am 
                                                            
                                                            
                                                                 Hi Bruce. My login.tpl is placed in design\mydesign\override\templates\user, and goes like this: 
<div id="kunde" style="position:absolute; left:800px; top:120px; width:154px; height:192px; z-index:5; visibility: visible"> 
 <img src={"kunde.gif"|ezimage} width="154" height="192"></div> <div id="kundeweb" style="position:absolute; left:811px; top:160px; width:135px; height:69px; z-index:6; visibility: visible"> <form method="post" action={"/user/login/"|ezurl}> 
<div class="text"> 
<label for="id1">{"Login"|i18n("design/standard/user")}</label><div class="labelbreak"></div> 
<input class="halfbox" type="text" size="10" name="Login" id="id1" value="{$User:login}" /> 
</div> 
<div class="text"> 
<label for="id2">{"Password"|i18n("design/standard/user")}</label><div class="labelbreak"></div> 
<input class="halfbox" type="password" size="10" name="Password" id="id2" value="" /> </div> 
<div class="buttonblock"> 
<input class="defaultbutton" type="submit" name="LoginButton" value="{'Login'|i18n('design/standard/user','Button')}" /> {*<input class="button" type="submit" name="RegisterButton" value="{'Sign Up'|i18n('design/standard/user','Button')}" />*} 
</div> 
<br /><br /><br /> 
{section show=$User:warning.bad_login} 
<h1>{"Could not login"|i18n("design/standard/user")}</h1> 
<ul> 
 <li>{"A valid username and password is required to login."|i18n("design/standard/user")}</li> 
</ul> {section-else} 
{section show=$site_access.allowed|not} 
<div class="warning"> 
<h1>{"Access not allowed"|i18n("design/standard/user")}</h1> 
<ul> 
 <li>{"You are not allowed to access %1."|i18n("design/standard/user",,array($site_access.name))}</li> 
</ul> 
</div> {/section} 
{/section} <input type="hidden" name="RedirectURI" value="/content/view/full/19" /> </form> </div> 
<div id="main-area" style="position:absolute; left:194px; top:319px; width:433px; height:207px; z-index:0; visibility: visible"> <table width="570" border="0" cellspacing="0" cellpadding="0" class="text"> 
 <tr> 
		<td align="right" valign="top" class="header"> 
			Velkommen til KundeWeb!<br><hr color="#000000" noshade size="1" width="100%"></td> 	</tr> 	<tr><td valign="top" align="center">Logg inn på høyre side.<br /> 		<hr color="#000000" noshade size="1" width="100%"> 
 </td> 
 </tr> </table> 
You can see the result here if you try with a bad login: http://www.krogsrudsag.no/user/login                                                             
                                                                                                                                                                                 |