Ticket #2071: model-api.txt.diff

File model-api.txt.diff, 674 bytes (added by asmodai@…, 18 years ago)

Describe how PasswordField works

  • docs/model-api.txt

     
    322322
    323323The admin represents this as a ``<select>`` box with "Unknown", "Yes" and "No" choices.
    324324
     325``PasswordField``
     326~~~~~~~~~~~~~~~~~ 
     327
     328A ``PasswordField`` is like a ``TextField`` but the difference is that the
     329characters that are entered are masked, typically by asterisks (*). Also note
     330that even though this is a password field the data is sent as clear text to
     331the server. Additional measures are needed to ensure data safety.
     332
    325333``PhoneNumberField``
    326334~~~~~~~~~~~~~~~~~~~~
    327335
Back to Top