blob: 6b98e6c9f34aeaa7c7c6fe371656613648d29009 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<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="" autofocus />
<input type="submit" value="" class="svg" />
</p>
</fieldset>
</form>
|