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
20 lines
797 B
HTML
20 lines
797 B
HTML
{{define "dashboard/login"}}
|
|
{{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 "Use"}} {{.LoginType}} {{tr "AccountToLogin"}}
|
|
</div>
|
|
</h2>
|
|
<a href="/oauth2/login" class="ui fluid large nezha-primary-btn submit button">{{tr "Login"}}</a>
|
|
<div class="ui message">
|
|
{{tr "DontHaveAnAccount"}} <a href="{{.RegistrationLink}}" target="_blank" rel="noopener noreferrer">{{tr "SignUp"}}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "common/footer" .}}
|
|
{{end}} |