put form into column

This commit is contained in:
Uwe Steinmann 2021-04-27 17:10:42 +02:00
parent 734ff7d33f
commit 74a2e39ff4

View File

@ -39,6 +39,8 @@ class SeedDMS_View_RemoveUserFromProcesses extends SeedDMS_Theme_Style {
$this->contentHeading(getMLText("rm_user_from_processes"));
$this->warningMsg(getMLText("confirm_rm_user_from_processes", array ("username" => htmlspecialchars($rmuser->getFullName()))));
$this->rowStart();
$this->columnStart(4);
?>
<form class="form-horizontal" action="../op/op.UsrMgr.php" name="form1" method="post">
<input type="hidden" name="userid" value="<?php print $rmuser->getID();?>">
@ -203,6 +205,9 @@ class SeedDMS_View_RemoveUserFromProcesses extends SeedDMS_Theme_Style {
</form>
<?php
$this->columnEnd();
$this->columnStart(8);
$this->rowEnd();
$this->contentEnd();
$this->htmlEndPage();
} /* }}} */