make form as wide as login form

This commit is contained in:
Uwe Steinmann 2023-05-22 16:21:31 +02:00
parent 6ba69e0dca
commit 0328121063

View File

@ -61,6 +61,7 @@ document.form1.email.focus();
$this->htmlStartPage(getMLText("password_forgotten"), "passwordforgotten"); $this->htmlStartPage(getMLText("password_forgotten"), "passwordforgotten");
$this->globalBanner(); $this->globalBanner();
$this->contentStart(); $this->contentStart();
echo "<div id=\"login_wrapper\">\n";
$this->pageNavigation(getMLText("password_forgotten")); $this->pageNavigation(getMLText("password_forgotten"));
?> ?>
@ -101,6 +102,7 @@ document.form1.email.focus();
</form> </form>
<p><a href="../out/out.Login.php"><?php echo getMLText("login"); ?></a></p> <p><a href="../out/out.Login.php"><?php echo getMLText("login"); ?></a></p>
<?php <?php
echo "</div>\n";
$this->contentEnd(); $this->contentEnd();
$this->htmlEndPage(); $this->htmlEndPage();
} /* }}} */ } /* }}} */