</div></div> <?php } else { ?> <div class="box_div" id="login_div"><div class="box_top_div">Ingresar</div><div class="box_body_div"> <form action="." id="login_form" autocomplete="off"><p> <label for="user_email_input">Email:</label><br><input type="text" id="user_email_input" value="<?php echo get_login_data('user_email'); ?> " autocapitalize="off"><br><br> <label for="user_password_input">Password:</label><br><input type="password" id="user_password_input" value="<?php echo get_login_data('user_password'); ?> "><br><br> <input type="checkbox" id="remember_me_checkbox" checked="checked"> <label for="remember_me_checkbox">Recordarme </label><br><br> <input type="submit" value="Ingresar"> </p></form> <p id="login_message_p"></p> <p><a href="#new_user">Nuevo usuario</a> | <a href="#forgot_password">Olvidó su password?</a></p> </div></div> <?php }
?> </strong>: </strong> <select id="language" name="language" style="margin-top:5px;"> <option value="<?php echo get_login_data('language'); ?> "><?php echo get_login_data('language'); ?> </option> <?php if ($handle = opendir('locale')) { $i = -1; while (false !== ($file = readdir($handle))) { if ($file != '.' && $file != '..' && substr($file, 0, 1) != '.') { if (get_login_data('language') != $file) { echo '<option value="' . $file . '">' . $file . '</option>'; } } $i++; } closedir($handle); } ?> </select> </p> </div> <hr/> <h3><?php