mirror of
https://github.com/marcus-alicia/iRedAdmin-Pro-SQL.git
synced 2026-05-26 15:13:38 +00:00
17 lines
545 B
HTML
17 lines
545 B
HTML
{% extends "mlmmj/layout.html" %}
|
|
{% from "macros/msg_handlers.html" import newsletter_error_msg_handler with context %}
|
|
|
|
{% block title %}{{ _('Error') }}{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<div class="container" style="width: 600px; margin-left: auto; margin-right: auto;">
|
|
<div class="empty" style="padding-top: 50px;">
|
|
<div class="toast toast-error">
|
|
<i class="icon icon-stop"></i>
|
|
{{ newsletter_error_msg_handler(msg) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock main %}
|