-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Closed
Labels
Milestone
Description
2FA style
- Has background box ✅
- Has white font ✅
Sharing password
- Missing the box ❌
- Black font not readable on the background ❌
@jancborchardt can you have a look? The template is at
server/apps/files_sharing/templates/authenticate.php
Lines 7 to 26 in 740659a
| <form method="post"> | |
| <fieldset> | |
| <?php if (!isset($_['wrongpw'])): ?> | |
| <div class="warning-info"><?php p($l->t('This share is password-protected')); ?></div> | |
| <?php endif; ?> | |
| <?php if (isset($_['wrongpw'])): ?> | |
| <div class="warning"><?php p($l->t('The password is wrong. Try again.')); ?></div> | |
| <?php endif; ?> | |
| <p> | |
| <label for="password" class="infield"><?php p($l->t('Password')); ?></label> | |
| <input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>" /> | |
| <input type="password" name="password" id="password" | |
| placeholder="<?php p($l->t('Password')); ?>" value="" | |
| autocomplete="off" autocapitalize="off" autocorrect="off" | |
| autofocus /> | |
| <input type="submit" id="password-submit" | |
| class="svg icon-confirm input-button-inline" value="" disabled="disabled" /> | |
| </p> | |
| </fieldset> | |
| </form> |

