This commit is contained in:
2019-11-12 12:17:21 +01:00
parent f82ac6c77a
commit 830fc14d62
27 changed files with 1041 additions and 0 deletions

10
static/views/start.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
$start = $this->oLang->texts['WELCOME'];
if ($_SESSION['admin']==0){
$start .= $this->oLang->texts['USER_INSTRUCTION'];
}
else{
$start .= $this->oLang->texts['ADMIN_INSTRUCTION'];
}
echo $start;
?>