diff --git a/pandora_console/include/class/WelcomeWindow.class.php b/pandora_console/include/class/WelcomeWindow.class.php
index 23ccab438d..a610359933 100644
--- a/pandora_console/include/class/WelcomeWindow.class.php
+++ b/pandora_console/include/class/WelcomeWindow.class.php
@@ -920,27 +920,31 @@ class WelcomeWindow extends Wizard
echo '
';
+ $spacing = '';
+ for ($i = 0; $i < 12; $i++) {
+ $spacing .= ' ';
+ }
+
// WMI Credentials
- echo html_print_label_input_block(
- __('WMI credentials'),
- html_print_div(
- [
- 'id' => 'wmi-creds',
- 'content' => ''
- ],
- true
- )
+ echo '
';
echo '
';
// RCM Credentials
- echo html_print_label_input_block(
- __('Remote commands credentials'),
- html_print_div(
- [
- 'id' => 'rcmd-creds',
- 'content' => ''
- ],
- true
- )
+ echo '';
echo html_print_submit_button(__('Create'), 'basic_net', false, ['icon' => 'next', 'style' => 'margin-top:15px; float:right;']);
?>