diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-25 23:49:05 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-25 23:49:05 +0100 |
commit | d6fb2afa8580b7d12b1f0cfc2bb8fb29e01a087f (patch) | |
tree | 7630a7591b2ef45117326eba2d9cb33d39bbaec1 /core/templates/login.php | |
parent | 5310a5924b18849c85b482819c350d72a6d0c67c (diff) | |
download | nextcloud-server-d6fb2afa8580b7d12b1f0cfc2bb8fb29e01a087f.tar.gz nextcloud-server-d6fb2afa8580b7d12b1f0cfc2bb8fb29e01a087f.zip |
show a message at the log-in screen if inital encryption take place
Diffstat (limited to 'core/templates/login.php')
-rw-r--r-- | core/templates/login.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/templates/login.php b/core/templates/login.php index aca42c84387..214fda3b61e 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -1,5 +1,5 @@ <!--[if IE 8]><style>input[type="checkbox"]{padding:0;}</style><![endif]--> -<form method="post"> +<form method="post" name="login"> <fieldset> <?php if (!empty($_['redirect_url'])) { print_unescaped('<input type="hidden" name="redirect_url" value="' . OC_Util::sanitizeHTML($_['redirect_url']) . '" />'); @@ -18,6 +18,8 @@ <small><?php p($l->t('Please contact your administrator.')); ?></small> </div> <?php endif; ?> + <p name="message" class="hidden"> + </p> <p class="infield grouptop"> <input type="text" name="user" id="user" placeholder="" value="<?php p($_['username']); ?>"<?php p($_['user_autofocus'] ? ' autofocus' : ''); ?> |