Browse Source

add CSS and JavaScript code to alert message section in header.html.

stable
Craig Oates 2 years ago
parent
commit
5212a9b985
  1. 11
      templates/layouts/header.html

11
templates/layouts/header.html

@ -96,8 +96,17 @@
<div id="fe-main">
{% if alert %}
<div class="be-alert-container">
<div class="be-alert-container"
id="be-alert-container">
{{alert | safe}}
<button class="be-gui-button-no-text"
title="Click to close alert message"
type="button"
id="be-close-alert"
onclick="closeAlert()">
<img alt="Close alert"
src="/images/icons/cross-circle.png">
</button>
</div>
{% endif %}

Loading…
Cancel
Save