用户登录
登录后即可从任何地方访问自己定制的导航主页

登录

用户名
密码

{$cdtat_start} $("#formButtonLogin").click(function() { $('#login_form').submit(); }); $("#username").focus(); $("#login_form").submit(function() { $(this).ajaxSubmit( { url: '/window/login.php?ac=$_SCONFIG[login_action]&$url_plus&ref', type: 'post', beforeSubmit: function(formData, jqForm, options) { if ($('input[@name=username]').fieldValue() == '') { showAlert({ content: '必须填写用户名' }); return false; } if ($('input[@name=password]').fieldValue() == '') { showAlert({ content: '必须填写登录密码' }); return false; } }, success: function(responseText) { if (responseText == 'success') { document.location.reload(); // hideWindow(); // loadDesktopBar(0); } else { if (responseText == 'formLoginErrorNotVerified') { $("#formButtonResendVerificationDiv").show(); } else { $("#formButtonResendVerificationDiv").hide(); } // showAlert({ identifier: responseText }); showAlert({ content: responseText }); } } }); return false; }); function sendPassMail() { top.location.href='do.php?ac=lostpasswd'; } {$cdtat_end}