X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=user_add.php;h=a38ef4f89f5ad55a8380c8275c8e03e67cfd78df;hb=cf9315882cd37786cc8ba5d13bf6381b935d1600;hp=82e55cf104c3417f88df7bb1e21f61ac94a94b0a;hpb=61efd9d023ae34c1290ef2e1ae25829c509caaee;p=timetracker.git diff --git a/user_add.php b/user_add.php index 82e55cf1..a38ef4f8 100644 --- a/user_add.php +++ b/user_add.php @@ -77,8 +77,8 @@ $form = new Form('userForm'); $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','style'=>'width: 300px;','value'=>$cl_name)); $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'login','style'=>'width: 300px;','value'=>$cl_login)); if (!$auth->isPasswordExternal()) { - $form->addInput(array('type'=>'text','maxlength'=>'30','name'=>'pas1','aspassword'=>true,'value'=>$cl_password1)); - $form->addInput(array('type'=>'text','maxlength'=>'30','name'=>'pas2','aspassword'=>true,'value'=>$cl_password2)); + $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'pas1','value'=>$cl_password1)); + $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'pas2','value'=>$cl_password2)); } $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'email','value'=>$cl_email));