mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-01 08:33:22 +02:00
41 lines
No EOL
2.1 KiB
Twig
41 lines
No EOL
2.1 KiB
Twig
{% if flash.getMessage('info') %}
|
|
<div class="alert alert-important alert-info alert-dismissible" role="alert">
|
|
<div class="d-flex">
|
|
<div>
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="icon alert-icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" /><path d="M12 8l.01 0" /><path d="M11 12l1 0l0 4l1 0" /></svg>
|
|
</div>
|
|
<div>
|
|
<h4 class="alert-title">{{ (flash.getMessage('info') | first) | raw }}</h4>
|
|
</div>
|
|
</div>
|
|
<a class="btn-close" data-bs-dismiss="alert" aria-label="close"></a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if flash.getMessage('error') %}
|
|
<div class="alert alert-important alert-danger alert-dismissible" role="alert">
|
|
<div class="d-flex">
|
|
<div>
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="icon alert-icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" /><path d="M12 8l0 4" /><path d="M12 16l.01 0" /></svg>
|
|
</div>
|
|
<div>
|
|
<h4 class="alert-title">{{ (flash.getMessage('error') | first)| raw }}</h4>
|
|
</div>
|
|
</div>
|
|
<a class="btn-close" data-bs-dismiss="alert" aria-label="close"></a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if flash.getMessage('success') %}
|
|
<div class="alert alert-important alert-success alert-dismissible" role="alert">
|
|
<div class="d-flex">
|
|
<div>
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="icon alert-icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
|
|
</div>
|
|
<div>
|
|
<h4 class="alert-title">{{ (flash.getMessage('success') | first)| raw }}</h4>
|
|
</div>
|
|
</div>
|
|
<a class="btn-close" data-bs-dismiss="alert" aria-label="close"></a>
|
|
</div>
|
|
{% endif %} |