From 26b376296278c38eeefca0b63b8e5deae9cbafea Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 4 May 2021 18:11:18 +0200 Subject: [PATCH] fix layout --- views/bootstrap/class.EditUserData.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/views/bootstrap/class.EditUserData.php b/views/bootstrap/class.EditUserData.php index f84d4cefa..2c79c39d9 100644 --- a/views/bootstrap/class.EditUserData.php +++ b/views/bootstrap/class.EditUserData.php @@ -100,11 +100,11 @@ $(document).ready( function() { $this->pageNavigation(getMLText("my_account"), "my_account"); $this->contentHeading(getMLText("edit_user_details")); - $this->contentContainerStart(); ?>
contentContainerStart(); $this->formField( getMLText("current_password"), array( @@ -118,12 +118,12 @@ $(document).ready( function() { ); $this->formField( getMLText("new_password"), - '' + '' ); if($passwordstrength) { $this->formField( getMLText("password_strength"), - '
' + '
' ); } $this->formField( @@ -206,12 +206,12 @@ $(document).ready( function() { ) ); } + $this->contentContainerEnd(); $this->formSubmit(" ".getMLText('save')); ?>
contentContainerEnd(); $this->contentEnd(); $this->htmlEndPage(); } /* }}} */