authenticate.php 625 B

12345678910111213141516
  1. <form action="<?php p($_['URL']); ?>" method="post">
  2. <fieldset>
  3. <?php if (!isset($_['wrongpw'])): ?>
  4. <div class="warning-info"><?php p($l->t('This share is password-protected')); ?></div>
  5. <?php endif; ?>
  6. <?php if (isset($_['wrongpw'])): ?>
  7. <div class="warning"><?php p($l->t('The password is wrong. Try again.')); ?></div>
  8. <?php endif; ?>
  9. <p class="infield">
  10. <label for="password" class="infield"><?php p($l->t('Password')); ?></label>
  11. <input type="password" name="password" id="password" placeholder="" value="" autofocus />
  12. <input type="submit" value="" class="svg" />
  13. </p>
  14. </fieldset>
  15. </form>