mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00:00
Update login.html
Use SITE_NAME for login box title on login page (with default value). This can be useful when using multiple powerdns admin in an organization.
This commit is contained in:
parent
b607c1b7ff
commit
91c1907486
@ -20,7 +20,13 @@
|
|||||||
<body class="hold-transition login-page">
|
<body class="hold-transition login-page">
|
||||||
<div class="login-box">
|
<div class="login-box">
|
||||||
<div class="login-logo">
|
<div class="login-logo">
|
||||||
<a href="{{ url_for('index.index') }}"><b>{{ SITE_NAME }}</b></a>
|
<a href="{{ url_for('index.index') }}">
|
||||||
|
{% if SETTING.get('site_name') %}
|
||||||
|
<b>{{ SITE_NAME }}</b>
|
||||||
|
{% else %}
|
||||||
|
<b>PowerDNS</b>-Admin
|
||||||
|
{% endif %}
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.login-logo -->
|
<!-- /.login-logo -->
|
||||||
<div class="login-box-body">
|
<div class="login-box-body">
|
||||||
|
Loading…
Reference in New Issue
Block a user