diff options
author | Joas Schilling <coding@schilljs.com> | 2016-09-19 15:33:30 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-11-18 11:57:16 +0100 |
commit | d75e35b75e9d70e511bee2c9fc830825363a4fd6 (patch) | |
tree | 0bfd1570211d1a8561c916d202b5f976a9d86445 /core/templates/layout.user.php | |
parent | 54ca411ff097d64d33c2d1e90102ef1fb1927f40 (diff) | |
download | nextcloud-server-d75e35b75e9d70e511bee2c9fc830825363a4fd6.tar.gz nextcloud-server-d75e35b75e9d70e511bee2c9fc830825363a4fd6.zip |
Introduce the UI for password confirmation
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/templates/layout.user.php')
-rw-r--r-- | core/templates/layout.user.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index bc8edf085d0..1b4f0bc0030 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -146,6 +146,13 @@ </div> </div></nav> + <div id="sudo-login-background" class="hidden"></div> + <div id="sudo-login-form" class="hidden"> + <input type="password" class="question" autocomplete="off" name="question" value=" " + placeholder="<?php p($l->t('Confirm your password')); ?>" /> + <input class="confirm icon-confirm" title="<?php p($l->t('Confirm')); ?>" value="" type="submit"> + </div> + <div id="content-wrapper"> <div id="content" class="app-<?php p($_['appid']) ?>" role="main"> <?php print_unescaped($_['content']); ?> |