place submit button outside of contentContainer

This commit is contained in:
Uwe Steinmann 2021-05-04 13:16:35 +02:00
parent 07affc574b
commit 4cb9ed294e

View File

@ -227,6 +227,7 @@ $(document).ready( function() {
<input type="hidden" name="action" value="adduser"> <input type="hidden" name="action" value="adduser">
<?php <?php
} }
$this->contentContainerStart();
$this->formField( $this->formField(
getMLText("user_login"), getMLText("user_login"),
array( array(
@ -501,6 +502,7 @@ $(document).ready( function() {
); );
} }
} }
$this->contentContainerEnd();
$this->formSubmit("<i class=\"fa fa-save\"></i> ".getMLText($currUser ? "save" : "add_user")); $this->formSubmit("<i class=\"fa fa-save\"></i> ".getMLText($currUser ? "save" : "add_user"));
?> ?>
</form> </form>
@ -555,12 +557,10 @@ $(document).ready( function() {
<?php <?php
$this->columnEnd(); $this->columnEnd();
$this->columnStart(4); $this->columnStart(4);
$this->contentContainerStart();
?> ?>
<div class="ajax" data-view="UsrMgr" data-action="form" <?php echo ($seluser ? "data-query=\"userid=".$seluser->getID()."\"" : "") ?>></div> <div class="ajax" data-view="UsrMgr" data-action="form" <?php echo ($seluser ? "data-query=\"userid=".$seluser->getID()."\"" : "") ?>></div>
</div> </div>
<?php <?php
$this->contentContainerEnd();
$this->columnEnd(); $this->columnEnd();
$this->rowEnd(); $this->rowEnd();
$this->contentEnd(); $this->contentEnd();