mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
8 lines
No EOL
303 B
PHP
8 lines
No EOL
303 B
PHP
<?php $success = Session::getFlash('success') ?>
|
|
<?php $error = Session::getFlash('error') ?>
|
|
|
|
<?php if ($error): ?>
|
|
<div class="notice notice-error spacer1"><?php echo $error ?></div>
|
|
<?php elseif ($success): ?>
|
|
<div class="notice notice-success spacer1"><?php echo $success ?></div>
|
|
<?php endif ?>
|