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

View File

@@ -0,0 +1,18 @@
<?php
$login = '
<br><h1>'.$this->oLang->texts['PLEASE_LOG_IN'].' :</h1><br>
<form action="'.htmlspecialchars($_SERVER["PHP_SELF"]).'" method="post">
<input type = hidden name="ac" value = "strt">
<label for ="user_info">'.$this->oLang->texts['USER_ID_OR_EMAIL'].': </label><br>
<input id="user_info" type="text" name="login_user_info"><br><br>
<label for ="pw"> '.$this->oLang->texts['PASSWORD'].' </label><br>
<input id="pw" type="password" name="login_password"><br>
<input type="submit" value="'.$this->oLang->texts['BUTTON_SEND'].'">
<input type="reset" value="'.$this->oLang->texts['BUTTON_RESET'].'">
</form>';
echo $login;