How to start a sesion directly from the front page?
I would like to know if, it would be possible to login and start a sesion directly from the front page.
What I want it is just to avoid the first login click and improve the way my blog looks and works. (one click behind)
In the home page, after writing the user identification and the password in the home page, it will be to press a "enter" button and that's it.
I already tried but, it won't work!
I don't knowif works for John Bernard Walsh at johnwalsh.antville.org
Any ideas or suggestions, if there is a solution for?
Dnk.
pers
I manged to this by adding the followin code to the
"Site Layout->Navigation->Logged out user" skin
btw, you'll have to change SITE (most likely antville)
<div class="boxheader">login</div>
<div class="box">
<form method="post" action="/SITE/members/login">
<table border="0" cellspacing="0" cellpadding="3">
<tr>
<td class="small" nowrap="nowrap">Username:</td>
<td class="small" nowrap="nowrap"><% input type="text" name="name" size="15" tabindex="1" %></td>
</tr>
<tr>
<td class="small" nowrap="nowrap">Password:</td>
<td class="small" nowrap="nowrap"><% input type="password" name="password" size="15" tabindex="2" %></td>
</tr>
<tr>
<td nowrap="nowrap"><% input type="submit" name="login" value="Login" tabindex="4" %></td>
<td class="small" nowrap="nowrap"><% input type="checkbox" name="remember" tabindex="3" %>Remember me</td>
</tr>
</table>
</form>
<br/>
<% membermgr.link to="register" text="Not registered yet?" %><br/>
</div>
br,
Per
click
Thank you, very much!