mirror of
https://github.com/nextcloud/server.git
synced 2026-03-21 01:52:08 -04:00
18 lines
713 B
PHP
18 lines
713 B
PHP
<form action="<?php p($_['URL']); ?>" 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 class="infield">
|
|
<label for="password" class="infield"><?php p($l->t('Password')); ?></label>
|
|
<input type="password" name="password" id="password"
|
|
placeholder="" value=""
|
|
autocomplete="off" autocapitalize="off" autocorrect="off"
|
|
autofocus />
|
|
<input type="submit" value="" class="svg icon icon-confirm" />
|
|
</p>
|
|
</fieldset>
|
|
</form>
|