My website has an admin section where we can process customer requests. The latest version of the plugin appears to be overriding the customer's entered values with the admin's information. What is interesting is that the field does not have a name attribute (it's a Vue form that uses v-model), and is disabled when the information changes. Here is one example of the form that is changing. "disableEdit" is true on page load. I can sit there and watch the page load the customer's information complete with email address, then change it to my email address. I'd rather not have to tell every single one of our employees how to disable autofill.
<label class="col-md-2 control-label">Email</label>
<input type="text" v-model="agreement.email" :disabled="disableEdit" class="col-md-10 form-control" autocomplete="off"/>