1
0
orblog-legacy/private/templates/sign_in.php

35 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2024-07-13 18:19:16 +02:00
<?php
/*-----------------------------------------------------------------------------
orblog - Simple blog for hidden networks.
Version: 0.1
Git: https://code.fossee.net/chicory/orblog-legacy
Copyright: chicory@fossee.net 2020
License: http://www.apache.org/licenses/LICENSE-2.0
-----------------------------------------------------------------------------*/
?>
<div class="title">
<div class="title_tab">
<?=$_LANG['admin']?>
</div>
</div>
<div class="clear"></div>
<div class="content">
<div class="center">
<h1><?=$_LANG['sign_in']?></h1>
<?php if($_TPL['error']) { ?>
<div class="error">
<?=$_TPL['error']?>
</div>
<?php } ?>
<form action="index.php?view=admin&auth=sign_in" method="post">
<input type="password" name="pass" placeholder="<?=$_LANG['input_pass']?>"><br>
<img src="captcha.php" alt="captcha" class="captcha"><br>
<input type="text" name="captcha" placeholder="<?=$_LANG['input_captcha']?>"><br>
<input type="submit" value="<?=$_LANG['sign_in']?>" class="button"><br>
</form>
</div>