message.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!--
  2. Copyright (C) 2019-2022 Nicola Murino
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Affero General Public License as published
  5. by the Free Software Foundation, version 3.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU Affero General Public License for more details.
  10. You should have received a copy of the GNU Affero General Public License
  11. along with this program. If not, see <https://www.gnu.org/licenses/>.
  12. -->
  13. {{template "base" .}}
  14. {{define "title"}}{{.Title}}{{end}}
  15. {{define "page_body"}}
  16. {{if .LoggedAdmin.Username}}
  17. <div class="card shadow mb-4">
  18. <div class="card-header py-3">
  19. <h6 class="m-0 font-weight-bold text-primary">{{.Title}}</h6>
  20. </div>
  21. <div class="card-body">
  22. {{if .Error}}
  23. <div class="card mb-2 border-left-warning">
  24. <div class="card-body text-form-error">{{.Error}}</div>
  25. </div>
  26. {{end}}
  27. {{if .Success}}
  28. <div class="card mb-2 border-left-success">
  29. <div class="card-body">{{.Success}}</div>
  30. </div>
  31. {{end}}
  32. </div>
  33. </div>
  34. {{else}}
  35. <div class="row justify-content-center">
  36. <div class="col-xl-8 col-lg-9 col-md-9">
  37. <div class="card o-hidden border-0 shadow-lg my-5">
  38. <div class="card-body p-0">
  39. <div class="row justify-content-center">
  40. <div class="col-lg-9">
  41. <div class="p-5">
  42. <div class="text-center">
  43. <h1 class="h4 text-gray-900 mb-4">{{.Title}}</h1>
  44. </div>
  45. {{if .Error}}
  46. <div class="card mb-4 border-left-warning">
  47. <div class="card-body text-form-error">{{.Error}}</div>
  48. </div>
  49. {{end}}
  50. {{if .Success}}
  51. <div class="card mb-4 border-left-success">
  52. <div class="card-body">{{.Success}}</div>
  53. </div>
  54. {{end}}
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. {{end}}
  63. {{end}}