diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-05-30 09:31:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:16 -0500 |
commit | e39bdcf930f328592c4ef179ab21e2e789757d8e (patch) | |
tree | 98461a9ad6b807b90475a057918dc0176107252d /swat | |
parent | 2a20e42c2637a6d53d74f3c68a4f420f8cb77a27 (diff) | |
download | samba-e39bdcf930f328592c4ef179ab21e2e789757d8e.tar.gz samba-e39bdcf930f328592c4ef179ab21e2e789757d8e.tar.bz2 samba-e39bdcf930f328592c4ef179ab21e2e789757d8e.zip |
r7099: make the password field a password field...
metze
(This used to be commit ad2d3991ba56d2779df66ff88ccbeb165ac23376)
Diffstat (limited to 'swat')
-rw-r--r-- | swat/login.esp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/swat/login.esp b/swat/login.esp index 5d12af2258..be5457fedd 100644 --- a/swat/login.esp +++ b/swat/login.esp @@ -4,6 +4,7 @@ var f = Form("login", 2, 1); f.element[0].label = "Username"; f.element[1].label = "Password"; +f.element[1].type = "password"; f.submit[0] = "Login"; display_form(f); |