Auto Login, how to ?

Auto Login, how to ?

How can I make an Auto Login for these two login types?


<form method="post" action="auth/login" id="login-form">
                    <div>
                    <label for="rememberme">Remember me</label><input type="checkbox" name="remember me" checked="checked" class="remember">
                   
                    <label class="no-js" id="email-label" for="email" style="display: none;">Email</label>
                   
                    <input type="text" autocomplete="off" value="" name="handle" id="email-email">
                   
                    <label class="no-js" id="combo-label" for="combination" style="display: none;">Combination</label>
                                       
                    <input type="text" autocomplete="off" value="Combination" id="password-clear" style="display: inline;">
                    <input type="password" autocomplete="off" value="" name="password" id="password-password" style="display: none;">
                    <input type="submit" value="Sign In" class="signin" id="sumbitLogin">
                    </div>
               
                </form>



and




<div class="loginFields">
            <form action="checklogin.php" method="post" id="loginForm" name="loginForm">
           
                <div id="errBox"></div>
                <div class="fieldImages">
                    <input type="text" autocomplete="off" value="" name="email" onfocus="activateField('email');" id="email" class="loginBox">
                    <input type="text" autocomplete="off" onkeydown="checkForEnterKey(event);" onfocus="activateField('combination');" name="combination" id="combination" class="loginBox">
                </div>
                <a onclick="doLogin(); return false;" href="#" class="signIn"></a>
            </form>
        </div>