13 lines
520 B
PHP
13 lines
520 B
PHP
<div id="welcome">
|
|
<h1>Witamy w panelu administracyjnym</h1>
|
|
<h2><?php echo html::anchor('/', $title) ?></h2>
|
|
|
|
<?php if($_SESSION['admin']['last_success']): ?>
|
|
<p class="success">Data ostatniego poprawnego logowania: <strong><?php echo $_SESSION['admin']['last_success'] ?></strong></p>
|
|
<?php endif; ?>
|
|
|
|
<?php if($_SESSION['admin']['last_failed']): ?>
|
|
<p class="failed">Data ostatniego błędnego logowania: <strong><?php echo $_SESSION['admin']['last_failed'] ?></strong></p>
|
|
<?php endif; ?>
|
|
|
|
</div>
|