- add session validation_errors bootstrap initialization - render global flash + validation messages in header - remove footer alert-based flash handling - persist structured validation errors across save handlers - mark NEXT_STEPS package 1 tasks as done
17 lines
340 B
PHP
17 lines
340 B
PHP
<?php
|
|
/**
|
|
* footer.php
|
|
*/
|
|
?>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© <?php echo date('Y'); ?> Troy Grunt - NDT</p>
|
|
<p class="footer-meta">
|
|
Umgebung: <?php echo defined('APP_ENV') ? htmlspecialchars(APP_ENV) : 'unknown'; ?>
|
|
| Session: <?php echo session_id() !== '' ? 'aktiv' : 'inaktiv'; ?>
|
|
</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|