diff --git a/app/views/admin/communication/websites/_form.html.erb b/app/views/admin/communication/websites/_form.html.erb
index b74c842aa0e5f636049824ec343c3cc9434489ba..0ab8c8f5c772469fe78113f74d19d5b4a619d06c 100644
--- a/app/views/admin/communication/websites/_form.html.erb
+++ b/app/views/admin/communication/websites/_form.html.erb
@@ -19,13 +19,23 @@
             <div class="col-xl-6">
               <%= f.input :git_provider, include_blank: false %>
               <%= f.input :git_endpoint %>
-              <%= f.input :deployment_status_badge, as: :string %>
+              <%= f.input :deployment_status_badge, 
+                          as: :string, 
+                          input_html: {
+                            autocomplete: 'off',
+                            role: 'presentation'
+                          }
+                          %>
             </div>
             <div class="col-xl-6">
               <%= f.input :access_token, 
                           as: :password, 
                           placeholder: masked_string(f.object.access_token), 
-                          hint: t("simple_form.hints.communication_website.access_token_#{f.object.access_token.blank? ? 'without' : 'with'}_existing").html_safe
+                          hint: t("simple_form.hints.communication_website.access_token_#{f.object.access_token.blank? ? 'without' : 'with'}_existing").html_safe,
+                          input_html: {
+                            autocomplete: 'off',
+                            role: 'presentation'
+                          }
                           %>
               <%= f.input :repository %>
               <%= f.input :git_branch %>