Blame view

sources/apps/files_sharing/templates/authenticate.php 625 Bytes
03e52840d   Kload   Init
1
2
  <form action="<?php p($_['URL']); ?>" method="post">
  	<fieldset>
31b7f2792   Kload   Upgrade to ownclo...
3
4
5
6
7
  		<?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>
03e52840d   Kload   Init
8
9
10
11
  		<?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 />
31b7f2792   Kload   Upgrade to ownclo...
12
  			<input type="submit" value="" class="svg" />
03e52840d   Kload   Init
13
14
15
  		</p>
  	</fieldset>
  </form>