fix(frontend): add autocomplete=off tags to most inputs

This commit is contained in:
sam 2024-12-02 15:06:17 +01:00
parent de733a0682
commit f3bb2d5d01
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
9 changed files with 25 additions and 7 deletions

View file

@ -16,7 +16,7 @@
<form method="POST">
<div class="my-3">
<label class="form-label" for="name">{$t("settings.create-member-name-label")}</label>
<input class="form-control" type="text" id="name" name="name" required />
<input class="form-control" type="text" id="name" name="name" required autocomplete="off" />
</div>
<button class="btn btn-primary" type="submit">{$t("profile.create-member-button")}</button>
</form>