aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base/alert.tmpl
blob: 60b7b588d74039ac57e4faa9481b7d59c1e25c79 (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}}