diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-02 01:02:46 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-02 01:02:46 +0200 |
commit | 3e4d56d7bb79c6c4e514482598b7017ee62e930d (patch) | |
tree | 34fc90ae8a17397ad3490882ca54c6f3dadd32e9 /core/templates/login.php | |
parent | 4cecede13d74cc26f92aba50d415ff31d277ade5 (diff) | |
download | nextcloud-server-3e4d56d7bb79c6c4e514482598b7017ee62e930d.tar.gz nextcloud-server-3e4d56d7bb79c6c4e514482598b7017ee62e930d.zip |
adding warning about failed apache module auth
Diffstat (limited to 'core/templates/login.php')
-rw-r--r-- | core/templates/login.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/templates/login.php b/core/templates/login.php index 06f64d41e39..aca42c84387 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -12,6 +12,12 @@ <small><?php p($l->t('Please change your password to secure your account again.')); ?></small> </div> <?php endif; ?> + <?php if (isset($_['apacheauthfailed']) && ($_['apacheauthfailed'])): ?> + <div class="warning"> + <?php p($l->t('Server side authentication failed!')); ?><br> + <small><?php p($l->t('Please contact your administrator.')); ?></small> + </div> + <?php endif; ?> <p class="infield grouptop"> <input type="text" name="user" id="user" placeholder="" value="<?php p($_['username']); ?>"<?php p($_['user_autofocus'] ? ' autofocus' : ''); ?> |