mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-23 13:18:13 -05:00
0e9dfc0c7e
modified: resource/template/common/menu.html modified: resource/template/component/confirm.html modified: resource/template/component/cron.html modified: resource/template/component/monitor.html modified: resource/template/component/notification.html modified: resource/template/component/rule.html modified: resource/template/component/server.html modified: resource/template/dashboard/cron.html modified: resource/template/dashboard/error.html modified: resource/template/dashboard/login.html modified: resource/template/dashboard/monitor.html modified: resource/template/dashboard/notification.html modified: resource/template/dashboard/server.html modified: resource/template/dashboard/setting.html modified: resource/template/dashboard/terminal.html
22 lines
640 B
HTML
22 lines
640 B
HTML
{{define "dashboard/error"}}
|
|
{{template "common/header" .}}
|
|
<div class="login nb-container">
|
|
<div class="ui center aligned grid">
|
|
<div class="column">
|
|
<h2 class="ui image header">
|
|
<img src="/static/logo.svg?v20210804" class="image">
|
|
<div class="content">
|
|
{{tr "AccessDenied"}}
|
|
</div>
|
|
</h2>
|
|
<div class="ui message">
|
|
<p>
|
|
{{.Msg}}
|
|
</p>
|
|
<a href="{{.Link}}">{{.Btn}}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "common/footer" .}}
|
|
{{end}} |