Use the alert class for flash messages
This commit is contained in:
parent
12ca755bea
commit
08f3bb78c4
|
@ -68,21 +68,6 @@
|
|||
|
||||
<div class="container">
|
||||
|
||||
[% IF flashMsg %]
|
||||
<br />
|
||||
<p class="btn-info btn-large">[% flashMsg %]</p>
|
||||
[% END %]
|
||||
|
||||
[% IF successMsg %]
|
||||
<br />
|
||||
<p class="btn-success btn-large">[% successMsg %]</p>
|
||||
[% END %]
|
||||
|
||||
[% IF errorMsg %]
|
||||
<br />
|
||||
<p class="btn-warning btn-large">Error: [% errorMsg %]</p>
|
||||
[% END %]
|
||||
|
||||
[% IF !hideHeader %]
|
||||
<div class="page-header">
|
||||
<h1><small>[% HTML.escape(title) %]</small></h1>
|
||||
|
@ -91,6 +76,18 @@
|
|||
<br />
|
||||
[% END %]
|
||||
|
||||
[% IF flashMsg %]
|
||||
<div class="alert alert-info">[% flashMsg %]</div>
|
||||
[% END %]
|
||||
|
||||
[% IF successMsg %]
|
||||
<div class="alert alert-success">[% successMsg %]</div>
|
||||
[% END %]
|
||||
|
||||
[% IF errorMsg %]
|
||||
<div class="alert alert-error">Error: [% errorMsg %]</div>
|
||||
[% END %]
|
||||
|
||||
[% content %]
|
||||
|
||||
<footer class="navbar">
|
||||
|
|
Loading…
Reference in a new issue