place submit button outside of contentContainer

This commit is contained in:
Uwe Steinmann 2021-05-04 17:49:36 +02:00
parent 585fa964d5
commit b5116e3c1b

View File

@ -78,7 +78,6 @@ $(document).ready(function() {
$this->pageNavigation("", "calendar");
$this->contentHeading(getMLText("add_event"));
$this->contentContainerStart();
$expdate = getReadableDate();
?>
@ -87,6 +86,7 @@ $(document).ready(function() {
<?php echo createHiddenFieldWithKey('addevent'); ?>
<?php
$this->contentContainerStart();
$this->formField(
getMLText("from"),
$this->getDateChooser($expdate, "from", $this->params['session']->getLanguage())
@ -114,13 +114,13 @@ $(document).ready(function() {
'cols'=>80
)
);
$this->contentContainerEnd();
$this->formSubmit(getMLText('add_event'));
?>
</form>
<?php
$this->contentContainerEnd();
$this->contentEnd();
$this->htmlEndPage();
} /* }}} */