mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
25 lines
596 B
HTML
25 lines
596 B
HTML
{{define "error"}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
{{template "head" . }}
|
|
<body class="white error">
|
|
<div class="container-fluid">
|
|
<div class="error__container">
|
|
<div class="error__icon">
|
|
<i class="fa fa-exclamation-triangle"/>
|
|
</div>
|
|
<h2>{{.Props.Title}}</h2>
|
|
<p>{{ .Props.Message }}</p>
|
|
<a href="{{.Props.SiteURL}}">{{.Props.Link}}</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script>
|
|
var details = {{ .Props.Details }};
|
|
if (details.length > 0) {
|
|
console.log("error details: " + details);
|
|
}
|
|
</script>
|
|
</html>
|
|
{{end}}
|