diff --git a/CHANGELOG.md b/CHANGELOG.md
index b64e54d028a9750e9ffa8789da48c9829708d171..5ffd2c2443925766530f32b7e3c52729c201cf24 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Changelog
 
+## Unreleased
+
+- Do not autocomplete totp input field.
+
 ## [0.9.0]
 
 - Improve user listing: show label for admin users, show last login and
diff --git a/backend/web/static/base.js b/backend/web/static/base.js
index 2ba8071c30d8304632b1a04c99d8990ff4aebb89..510d0c234a116175c553675b2755b82103d0448f 100644
--- a/backend/web/static/base.js
+++ b/backend/web/static/base.js
@@ -527,7 +527,9 @@ function getFormElement(node, context) {
 			"TOTP code",
 			"Please enter the code from your TOTP/authenticator app.",
 			null,
-			messages
+			messages,
+			null,
+			false
 		);
 	}
 
@@ -579,6 +581,8 @@ function getFormElement(node, context) {
 // param help: Additional help text, displayed below the field in small font
 // param messages: Message about failed input
 // param readonly: Whether the input should be readonly (defaults to false)
+// param autocomplete: Whether the input should be autocompleted by the browser
+//   (defaults to true)
 function getFormInput(
 	type,
 	name,
@@ -587,7 +591,8 @@ function getFormInput(
 	placeHolder,
 	help,
 	messages,
-	readonly
+	readonly,
+	autocomplete
 ) {
 	if (typeof help == "undefined" || help == null) {
 		help = "";
@@ -595,6 +600,9 @@ function getFormInput(
 	if (typeof readonly == "undefined") {
 		readonly = false;
 	}
+	if (typeof autocomplete == "undefined") {
+		autocomplete = true;
+	}
 	console.log("Messages: ", messages);
 
 	// Id field for help element
@@ -632,6 +640,9 @@ function getFormInput(
 	if (readonly) {
 		element += "readonly ";
 	}
+	if (! autocomplete) {
+		element += "autocomplete=\"off\" ";
+	}
 	element += ">";
 
 	if (help) {
diff --git a/deployment/helmchart/Chart.lock b/deployment/helmchart/Chart.lock
index 4e066a30512b331e4565991809e3f8d5ed66808f..5947d4bbae7b87040878f7e7b0b81397bc88d9c1 100644
--- a/deployment/helmchart/Chart.lock
+++ b/deployment/helmchart/Chart.lock
@@ -1,6 +1,6 @@
 dependencies:
 - name: common
   repository: https://charts.bitnami.com/bitnami
-  version: 2.0.3
-digest: sha256:dfd07906c97f7fca7593af69d01f6f044e10a609a03057352142766a5caca6cd
-generated: "2022-09-29T15:38:57.444746866+02:00"
+  version: 2.14.1
+digest: sha256:31e157c847d806f07ddd0518316a205c315829105cd69ef5c79eff92e2f28967
+generated: "2024-01-30T13:59:56.425668471+01:00"