{% if app.request.getSchemeAndHttpHost() != "https://backoffice.boardingcentre.co.uk" %}<div style="background: #111; padding: 30px; margin-bottom: 15px;"><p style="margin: 0; font-size: 30px; color: #FFF;">Domain Mismatch</p><p style="margin: 0; font-size: 16px; color: #FFF;">You appear to be accessing this software using a non-standard domain. This suggests that you're likely not looking at the live version. Please <a href="https://www.cardiffwebdevelopment.co.uk/contact">contact us</a> if you're unsure.</p></div>{% endif %}{% if app.session.flashbag.peek('success') or app.session.flashbag.peek('warning') or app.session.flashbag.peek('error') or app.session.flashbag.peek('error_list') %}<div class="flash-messages">{% for flashmessage in app.session.flashbag.get('success') %}<div class="alert alert-success"><button type="button" class="close" aria-hidden="true" data-dismiss="alert" style="margin-top: 10px;">×</button><strong>Success</strong><br/>{{ flashmessage|raw }}</div>{% endfor %}{% for flashmessage in app.session.flashbag.get('warning') %}<div class="alert alert-warning"><button type="button" class="close" aria-hidden="true" data-dismiss="alert" style="margin-top: 10px;">×</button><strong>Warning</strong><br/>{{ flashmessage|raw }}</div>{% endfor %}{% for flashmessage in app.session.flashbag.get('error') %}<div class="alert alert-danger"><button type="button" class="close" aria-hidden="true" data-dismiss="alert" style="margin-top: 10px;">×</button><strong>Error</strong><br/>{{ flashmessage|raw }}</div>{% endfor %}{% for errors in app.session.flashbag.get('error_list') %}<div class="alert alert-danger"><ul class="m-0">{% for someMessage in errors %}<li>{{ someMessage }}</li>{% endfor %}</ul></div>{% endfor %}</div>{% endif %}