Need is to turn off Autocomplete for fields like Password entry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Need is to turn off Autocomplete for fields like Password entry
Need is to turn off Autocomplete for fields like Password entry in Form as in the Login Page, so that the browser does not prompt user to save the populated values for later use.
Solved! Go to Solution.
- Labels:
-
Security
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello @RS_L555
Due to the security reason, it's now allowed to turn off AutoComplete of the Password entry. If you use Text Field widget on Mashup, it's possible to turn on/off Autocomplete by Password property.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello Yue,
Thanks for your response. Is it possible to turn off Autocomplete on the TWX default login page that comes from the Organization link ? Also whether the Text Field widget can take the AlphaNumeric and Special characters that we normally use for entering passwords ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @RS_L555
ThingWorx does not have the feature to turn off auto complete on Organization Login page. It is not supported but it's possible to customize form Login page or create your own login page as follows.
Modify Login Form
https://community.ptc.com/t5/ThingWorx-Developers/Modify-Login-Form/td-p/525781
About text field widget, the input values can be validated by using Validate function. Please add a parameter on validate function for the input value, and check if the value only contains AlphaNumeric and Special characters by JavaScript (e.g. regexp) in Expression field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks Yue