axum-admin 0.1.1

A modern admin dashboard framework for Axum
Documentation
1
2
3
4
5
6
7
8
9
10
11
{% if success %}
<div class="flash-success mt-4 px-4 py-3 rounded-md bg-emerald-50 border border-emerald-200 text-emerald-800 text-sm font-medium flex items-center gap-2" id="flash">
  <i class="fa-solid fa-circle-check text-emerald-500"></i>
  {{ success }}
</div>
{% elif error %}
<div class="flash-error mt-4 px-4 py-3 rounded-md bg-red-50 border border-red-200 text-red-700 text-sm font-medium flex items-center gap-2" id="flash">
  <i class="fa-solid fa-circle-exclamation text-red-500"></i>
  {{ error }}
</div>
{% endif %}