Hi,
I don´t think it will work without a standard html form. 
The problem is that it won´t help you to store a password hash by a cookie 
because I think your backend is awaiting a plain text password because the 
communication protocol is https. In my opinion there is no other secure way to 
store a password in a cookie, because otherwise you will have to decrypt the 
password so you need another password because there is probably no public key 
infrastructure...so the only way is to let the browser manage these things. 
But what about a hidden html form ? You could check if the browser will 
autofill a hidden html form. You will have to replicate the data between the 
qooxdoo input elements and the hidden html form. Maybe it´s working if the form 
is not really hidden, but overlapped by another element with a higher 
z-index...you could play around with that.
Our applications are setup up by an initial login page that is pure html. Only 
when the login is successful and the session is valid, the qooxdoo application 
will load in another page. 

Cheers,
Rob.

-----Ursprüngliche Nachricht-----
Von: slah [mailto:[email protected]] 
Gesendet: Montag, 6. Februar 2012 01:24
An: Robert Nimax; [email protected]
Betreff: Re: [qooxdoo-devel] Create password field

in html it's simple:
<input type="password" name="Passwd" id="Passwd">

but how to do it with qooxdoo without manually saving/reading cookies.


zap wrote
> 
> I think Mozilla's Firefox 10 does this.
> 


--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Create-password-field-tp7256951p7257141.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers is just 
$99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style 
Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to