summaryrefslogtreecommitdiffstats
path: root/templates/base/alert.tmpl
blob: e71be803c5b93b7b1e3c895b787423d2f6ffea5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{if .Flash.ErrorMsg}}
<div class="ui negative message">
  <p>{{.Flash.ErrorMsg}}</p>
</div>
{{end}}
{{if .Flash.SuccessMsg}}
<div class="ui positive message">
  <p>{{.Flash.SuccessMsg}}</p>
</div>
{{end}}
{{if .Flash.InfoMsg}}
<div class="ui info message">
  <p>{{.Flash.InfoMsg}}</p>
</div>
{{end}}