| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!--
- Copyright (C) 2019-2022 Nicola Murino
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published
- by the Free Software Foundation, version 3.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <https://www.gnu.org/licenses/>.
- -->
- {{template "base" .}}
- {{define "title"}}{{.Title}}{{end}}
- {{define "page_body"}}
- {{if .LoggedAdmin.Username}}
- <div class="card shadow mb-4">
- <div class="card-header py-3">
- <h6 class="m-0 font-weight-bold text-primary">{{.Title}}</h6>
- </div>
- <div class="card-body">
- {{if .Error}}
- <div class="card mb-2 border-left-warning">
- <div class="card-body text-form-error">{{.Error}}</div>
- </div>
- {{end}}
- {{if .Success}}
- <div class="card mb-2 border-left-success">
- <div class="card-body">{{.Success}}</div>
- </div>
- {{end}}
- </div>
- </div>
- {{else}}
- <div class="row justify-content-center">
- <div class="col-xl-8 col-lg-9 col-md-9">
- <div class="card o-hidden border-0 shadow-lg my-5">
- <div class="card-body p-0">
- <div class="row justify-content-center">
- <div class="col-lg-9">
- <div class="p-5">
- <div class="text-center">
- <h1 class="h4 text-gray-900 mb-4">{{.Title}}</h1>
- </div>
- {{if .Error}}
- <div class="card mb-4 border-left-warning">
- <div class="card-body text-form-error">{{.Error}}</div>
- </div>
- {{end}}
- {{if .Success}}
- <div class="card mb-4 border-left-success">
- <div class="card-body">{{.Success}}</div>
- </div>
- {{end}}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- {{end}}
- {{end}}
|