pomerium/internal/frontend/assets/html/error.go.html
bobby 6466efddd5
authenticate: update user info screens (#1774)
- rename "dashboard" to userinfo to avoid confusion
- don't leak version from error page.
- fix typo in state.go
- make statik determenistic on modtime


Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com>
2021-01-13 13:15:31 -08:00

36 lines
1,021 B
HTML

{{define "error.html"}}
<!DOCTYPE html>
<html lang="en" charset="utf-8">
<head>
<title>{{.Status}} - {{.StatusText}}</title>
{{template "header.html"}}
</head>
<body>
<div class="inner">
<div class="header clearfix">
<div class="heading"></div>
</div>
<div class="content">
<div class="white box">
<div class="largestatus">
<img class="status-bubble" src="{{dataURL "/.pomerium/assets/img/error-24px.svg"}}" xmlns="http://www.w3.org/2000/svg" />
<div class="title-wrapper">
<span class="title">{{.Status}} {{.StatusText}}</span>
<label class="status-time">
<span>{{.Error}}</span>
</label>
</div>
</div>
<div class="category-link">
{{if and .CanDebug .DebugURL }}
If you should have access, contact your administrator with your <a href="{{.DebugURL}}">session details</a>.
{{end}}
</div>
</div>
</div>
</div>
</body>
</html>
{{end}}