disable browser autocomplete on all input fields
This commit is contained in:
@@ -32,11 +32,11 @@
|
||||
<div class="side-panel-content">
|
||||
<div class="form-group">
|
||||
<label for="edit-task-title">Title</label>
|
||||
<input type="text" id="edit-task-title">
|
||||
<input type="text" id="edit-task-title" autocomplete="off">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="edit-task-desc">Description</label>
|
||||
<textarea id="edit-task-desc" rows="12"></textarea>
|
||||
<textarea id="edit-task-desc" rows="12" autocomplete="off"></textarea>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="edit-task-status">Status</label>
|
||||
@@ -63,7 +63,7 @@
|
||||
<h2 id="task-modal-title">Create Task</h2>
|
||||
<button class="modal-close" id="task-modal-close">×</button>
|
||||
</div>
|
||||
<form id="task-form">
|
||||
<form id="task-form" autocomplete="off">
|
||||
<input type="hidden" id="task-id">
|
||||
<div class="form-group">
|
||||
<label for="task-title">Task Title</label>
|
||||
|
||||
Reference in New Issue
Block a user