diff --git a/src/templates/default/main/body.tpl.html b/src/templates/default/main/body.tpl.html
index 292493bd..64de846b 100644
--- a/src/templates/default/main/body.tpl.html
+++ b/src/templates/default/main/body.tpl.html
@@ -57,7 +57,7 @@
 		{% endfor %}
 		<div class="container">
 			<div class="row">{{ html_sidebar|raw }}</div>
-			<div class="row">{{ html_content|raw }}</div>
+			<div class="row" id="content">{{ html_content|raw }}</div>
 		</div>
 	</main>
 	{% if add_footer %}
diff --git a/src/templates/default/module/config/config.tpl.html b/src/templates/default/module/config/config.tpl.html
index d5e054e0..79cb01f5 100644
--- a/src/templates/default/module/config/config.tpl.html
+++ b/src/templates/default/module/config/config.tpl.html
@@ -39,7 +39,7 @@
                 <!-- Language -->
                 {{ macro.input_select("language", "language", label_language, languages, language_current) }}
                 <!-- Auto refresh -->
-                {{ macro.input_field("text", "auto_refresh", null, "auto_refresh", label_auto_refresh, auto_refresh, "0", "10", "auto_refresh_help", null, label_seconds) }}
+                {{ macro.input_field("number", "auto_refresh_servers", null, "auto_refresh_servers", label_auto_refresh, auto_refresh_servers, "0", "10", "auto_refresh_help", null, label_seconds) }}
                 <!-- Password encryption key -->
                 <!-- TODO how does the encryption function works currently? -->
                 {{ macro.input_field("text", "password_encrypt_key", null, "password_encrypt_key", label_password_encrypt_key, password_encrypt_key, "cab03a766...", "40", "password_encrypt_key_help", label_password_encrypt_key_note) }}
diff --git a/src/templates/default/module/server/status/index.tpl.html b/src/templates/default/module/server/status/index.tpl.html
index 2b8a959e..98b5ba94 100644
--- a/src/templates/default/module/server/status/index.tpl.html
+++ b/src/templates/default/module/server/status/index.tpl.html
@@ -101,7 +101,7 @@ setInterval(function() {
 	$.ajax({
 		url:"?",
 		success: function(html, status) {
-			$("#page-container").html(html);
+			$("#content").html(html);
 		}
 	});
 }, {{ auto_refresh_seconds }} * 1000);