summaryrefslogtreecommitdiffstats
path: root/application/views/header.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2013-07-14 16:49:47 +0200
committerFlorian Pritz <bluewind@xinu.at>2013-07-14 16:49:47 +0200
commit7873bfbe586d73a0385b8b3c2c796d56a89e7031 (patch)
treedbc9d915079e3f173385a7469a2c667e9c886fa2 /application/views/header.php
parent572a5cbbbf5cc9b51f4ddffa08fe24badf9b711f (diff)
Add sucess alert when saving profile
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views/header.php')
-rw-r--r--application/views/header.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/application/views/header.php b/application/views/header.php
index 7ed605bf3..deafa1ef5 100644
--- a/application/views/header.php
+++ b/application/views/header.php
@@ -71,3 +71,14 @@ if (is_cli_client() && !isset($force_full_html)) {
</div>
<div class="container">
+ <?php
+ if (isset($alerts)) {
+ foreach ($alerts as $alert) { ?>
+ <div class="alert alert-block alert-<?php echo $alert["type"]; ?>" style="text-align: center">
+ <button type="button" class="close" data-dismiss="alert">&times;</button>
+ <?php echo $alert["message"]; ?>
+ </div>
+ <?php
+ }
+ }
+ ?>