sogo/UI/WebServerResources/SOGoRootPage.js
Wolfgang Sourdeau 03e053dcfe Monotone-Parent: b4ab290388b7487ab5a09d448908ecdc6f29eea7
Monotone-Revision: cd8f65727eef6b9a57f0c17e2acdb44a8d763546

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-09-06T22:18:08
Monotone-Branch: ca.inverse.sogo
2007-09-06 22:18:08 +00:00

42 lines
1 KiB
JavaScript

function initLogin() {
var date = new Date();
date.setTime(date.getTime() - 86400000);
document.cookie = ("0xHIGHFLYxSOGo-0.9=discard; path=/"
+ "; expires=" + date.toGMTString());
var submit = $("submit");
Event.observe(submit, "click", onLoginClick);
var userName = $("userName");
userName.focus();
var image = $("preparedAnimation");
image.parentNode.removeChild(image);
}
function onLoginClick(event) {
startAnimation($("loginButton"), $("submit"));
var userName = $("userName").value;
var password = $("password").value;
if (userName.length > 0) {
var url = ($("connectForm").getAttribute("action")
+ "?userName=" + userName
+ "&password=" + password);
document.cookie = "";
triggerAjaxRequest(url, onLoginCallback);
}
event.preventDefault();
}
function onLoginCallback(http) {
if (http.readyState == 4) {
if (http.status == 204) {
window.location.href = ApplicationBaseURL + $("userName").value;
}
}
}
addEvent(window, 'load', initLogin);