Autocomplete of for OTA

This commit is contained in:
JonatanRek
2020-05-17 14:25:22 +02:00
parent 2c5d861011
commit 6a20e9c684
4 changed files with 6 additions and 5 deletions

View File

@@ -3,13 +3,14 @@
<head>
<?php
$partial = new Partial('head');
$partial->prepare('baseDir',$BASEDIR);
$partial->render();
?>
<title><?php echo $TITLE ?></title>
</head>
<body class="no-transitions">
<?php
if (isset($ota) && $ota != '') {
if (isset($ota) && $ota != '') {
$partial = new Partial('loginOta');
$partial->prepare('ota',$ota);
$partial->render();
@@ -18,7 +19,7 @@
$partial->render();
}
?>
<?php
$partial = new Partial('footer');
$partial->render();