Fix bug in SearchBar Handler

Introduce Message boxes
Incomplete and needs cleanup
This commit is contained in:
2023-06-22 16:26:09 +02:00
parent bcadb1adda
commit 82b8e8c284
4 changed files with 85 additions and 20 deletions

View File

@@ -0,0 +1,21 @@
{{define "navigation"}}
<header>
<nav class="navbar navbar-expand-lg navbar-light fixed-top bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="/">
<img style="height: 30px;" alt="ClusterCockpit Logo" src="/img/logo.png" class="d-inline-block align-top">
</a>
</div>
</nav>
</header>
{{end}}
{{define "content"}}
<div class="row">
<div class="col">
<div class="alert alert-info" role="alert">
{{.Info}}
</div>
</div>
</div>
{{end}}