reinstate closable notice boxes, and fix hero-box bottom padding

This commit is contained in:
Oliver Gorwits
2012-01-07 13:26:12 +00:00
parent 5db84cc813
commit bfcf722432
3 changed files with 8 additions and 6 deletions

View File

@@ -2,17 +2,20 @@
<div class="row nd_herorow">
<div class="span10 offset3">
[% IF params.failed %]
<div class="nd_loginalert alert-message error">
<div class="nd_loginalert alert-message error" data-alert="on">
<a class="close" href="#">×</a>
<p>Incorrect username or password, please try again.</p>
</div>
[% END %]
[% IF params.logout %]
<div class="nd_loginalert alert-message notice">
<p>You are logged out.</p>
<div class="nd_loginalert alert-message notice" data-alert="on">
<a class="close" href="#">×</a>
<p>You are now logged out.</p>
</div>
[% END %]
[% IF vars.notfound %]
<div class="nd_loginalert alert-message notice">
<div class="nd_loginalert alert-message notice" data-alert="on">
<a class="close" href="#">×</a>
<p>Sorry, page not found.
<a href="http://sourceforge.net/tracker/?group_id=80033&atid=558508" target="_blank">Report a Bug?</a></p>
</div>