]> wagnertech.de Git - timetracker.git/blobdiff - login.php
Fixed team update when team name is empty.
[timetracker.git] / login.php
index d578ae94ba3e91c2c5487280961de975146bde53..b0c583fa2056ba9801a50259a55fe24a59d11a60 100644 (file)
--- a/login.php
+++ b/login.php
@@ -38,7 +38,7 @@ if ($cl_login == null && $request->getMethod() == 'GET')
 
 $form = new Form('loginForm');
 $form->addInput(array('type'=>'text','size'=>'25','maxlength'=>'100','name'=>'login','style'=>'width: 220px;','value'=>$cl_login));
-$form->addInput(array('type'=>'text','size'=>'25','maxlength'=>'50','name'=>'password','style'=>'width: 220px;','aspassword'=>true,'value'=>$cl_password));
+$form->addInput(array('type'=>'password','size'=>'25','maxlength'=>'50','name'=>'password','style'=>'width: 220px;','value'=>$cl_password));
 $form->addInput(array('type'=>'hidden','name'=>'browser_today','value'=>'')); // User current date, which gets filled in on btn_login click.
 $form->addInput(array('type'=>'submit','name'=>'btn_login','onclick'=>'browser_today.value=get_date()','value'=>$i18n->getKey('button.login')));