2013-02-27 20:37:14 +00:00
|
|
|
<form action="<?php p($_['URL']); ?>" method="post">
|
2012-08-27 19:46:05 +00:00
|
|
|
<fieldset>
|
2013-10-07 15:38:27 +00:00
|
|
|
<?php if (!isset($_['wrongpw'])): ?>
|
|
|
|
<div class="warning-info"><?php p($l->t('This share is password-protected')); ?></div>
|
|
|
|
<?php endif; ?>
|
2013-07-05 08:37:24 +00:00
|
|
|
<?php if (isset($_['wrongpw'])): ?>
|
2013-10-07 15:38:27 +00:00
|
|
|
<div class="warning"><?php p($l->t('The password is wrong. Try again.')); ?></div>
|
2013-07-02 01:16:42 +00:00
|
|
|
<?php endif; ?>
|
2014-05-06 10:43:52 +00:00
|
|
|
<p>
|
2013-02-27 20:37:14 +00:00
|
|
|
<label for="password" class="infield"><?php p($l->t('Password')); ?></label>
|
2014-02-26 13:48:15 +00:00
|
|
|
<input type="password" name="password" id="password"
|
2014-05-06 10:43:52 +00:00
|
|
|
placeholder="<?php p($l->t('Password')); ?>" value=""
|
2014-02-26 13:48:15 +00:00
|
|
|
autocomplete="off" autocapitalize="off" autocorrect="off"
|
|
|
|
autofocus />
|
2014-06-13 14:38:42 +00:00
|
|
|
<img class="svg" id="password-icon" src="/master/core/img/actions/password.svg" alt="">
|
2014-03-14 13:47:40 +00:00
|
|
|
<input type="submit" value="" class="svg icon-confirm" />
|
2012-08-27 19:46:05 +00:00
|
|
|
</p>
|
|
|
|
</fieldset>
|
2013-03-04 21:11:57 +00:00
|
|
|
</form>
|