You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the addAuthor javascript function in app/assets/javascripts/ either in its own file or in application.js, we have a function addAuthor that includes manually creating lines inside a form. Those lines need to have autocomplete='off' on each line to prevent the form from being filled when the user uses the back-arrow. This is a security fix.
Example old code to modify: <input type="text" name="${type}[author_last_name][]" id="${type}_author_last_name_" required="required" class="form-control form-group">
Must include test that checks for the autocomplete=off and when user uses back-arrow in browser, fields should not auto-complete with old information.
The text was updated successfully, but these errors were encountered:
In the addAuthor javascript function in app/assets/javascripts/ either in its own file or in application.js, we have a function addAuthor that includes manually creating lines inside a form. Those lines need to have autocomplete='off' on each line to prevent the form from being filled when the user uses the back-arrow. This is a security fix.
Example old code to modify:
<input type="text" name="${type}[author_last_name][]" id="${type}_author_last_name_" required="required" class="form-control form-group">
Must include test that checks for the autocomplete=off and when user uses back-arrow in browser, fields should not auto-complete with old information.
The text was updated successfully, but these errors were encountered: