summaryrefslogtreecommitdiff
path: root/UI/login.js
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-10-14 17:31:23 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-10-14 17:31:23 +0000
commite5549057abc64f86547384d7c06f99614332c0f4 (patch)
treede3b1a73bf27f4998a807705f0e3d9b51b0a00a3 /UI/login.js
parenta4bc02096b38696e5d922689e6ffe7b7645fe6e3 (diff)
Moving menus to unorderded lists. CSS still need a few changes, but this is waiting on permission to use nice + and - graphics.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1752 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI/login.js')
-rw-r--r--UI/login.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/UI/login.js b/UI/login.js
index cf261624..fd421e26 100644
--- a/UI/login.js
+++ b/UI/login.js
@@ -13,7 +13,8 @@ function submit_form() {
var http = get_http_request_object();
var username = document.login.login.value;
var password = document.login.password.value;
- http.open("get", 'login.pl?action=authenticate', false,
+ http.open("get", 'login.pl?action=authenticate&company='
+ + document.login.company.value, false,
username, password);
http.send("");
alert(http.status);