18 lines
430 B
Go Template
18 lines
430 B
Go Template
<!doctype html>
|
|
<html>
|
|
<head>
|
|
{{template "head"}}
|
|
</head>
|
|
|
|
<body>
|
|
<div style="height: 100svh;" class="d-flex flex-column">
|
|
{{template "navbar" .Navbar}}
|
|
<div class="container d-flex flex-grow-1 justify-content-center align-items-center flex-column">
|
|
<div class="alert alert-danger" role="alert">
|
|
<p class="mb-0">{{.Message}}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|