2023-06-22 16:26:09 +02:00
|
|
|
|
|
|
|
{{define "content"}}
|
2023-06-23 10:20:48 +02:00
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-4">
|
|
|
|
<div class="alert {{.MsgType}} p-3 text-center fs-3" role="alert">
|
2023-06-23 09:42:31 +02:00
|
|
|
{{if eq .MsgType "alert-info"}}
|
2023-06-23 10:20:48 +02:00
|
|
|
<i class="bi-info-circle-fill me-3"></i>
|
2023-06-23 09:42:31 +02:00
|
|
|
{{else if eq .MsgType "alert-warning"}}
|
2023-06-23 10:20:48 +02:00
|
|
|
<i class="bi-question-circle-fill me-3"></i>
|
2023-06-23 09:42:31 +02:00
|
|
|
{{else if eq .MsgType "alert-danger"}}
|
2023-06-23 10:20:48 +02:00
|
|
|
<i class="bi-exclamation-circle-fill me-3"></i>
|
2023-06-23 09:42:31 +02:00
|
|
|
{{end}}
|
2023-06-23 10:20:48 +02:00
|
|
|
{{.Message}}
|
2023-06-23 09:03:36 +02:00
|
|
|
</div>
|
2023-06-22 16:26:09 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-06-23 09:42:31 +02:00
|
|
|
{{end}}
|