hyteck-blog/static/views/login_form.php

19 lines
660 B
PHP
Raw Normal View History

2019-11-12 11:17:21 +00:00
<?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;