diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-12-24 14:25:01 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-12-24 14:25:01 -0800 |
commit | a87a18d56c98c9408a828774a2431be195fdb0a6 (patch) | |
tree | 759b7622a1cc85658673348b3f479e631fc65948 /core | |
parent | 6523960de91ec4dc0f69b3cd30a4fee323417f18 (diff) | |
parent | cef39243f81117ab4a6da5f6755a72294d8ae1ab (diff) | |
download | nextcloud-server-a87a18d56c98c9408a828774a2431be195fdb0a6.tar.gz nextcloud-server-a87a18d56c98c9408a828774a2431be195fdb0a6.zip |
Merge pull request #6561 from syncloud/master
Made admin password field required on client side
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/installation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 325eb204868..ec55a65ea58 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -54,7 +54,7 @@ </p> <p class="infield groupbottom"> <input type="password" name="adminpass" data-typetoggle="#show" id="adminpass" placeholder="" - value="<?php p(OC_Helper::init_var('adminpass')); ?>" /> + value="<?php p(OC_Helper::init_var('adminpass')); ?>" required /> <label for="adminpass" class="infield"><?php p($l->t( 'Password' )); ?></label> <img class="svg" id="adminpass-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt="" /> <input type="checkbox" id="show" name="show" /> |