Files
website/app/views/partials/message.php
T
Riyyi a8056b66cc Initial commit
Couldnt keep the history unfortunately.
2021-03-03 17:55:48 +01:00

9 lines
300 B
PHP

<?php if ($this->type != '') { ?>
<div class="alert alert-<?= $this->type; ?> alert-dismissible fade show" role="alert">
<?= $this->message; ?>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<?php } ?>