nextcloud/apps/files_sharing/templates/authenticate.php

19 lines
713 B
PHP
Raw Normal View History

2013-02-28 00:37:14 +04:00
<form action="<?php p($_['URL']); ?>" method="post">
2012-08-27 23:46:05 +04:00
<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">
2013-02-28 00:37:14 +04:00
<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 />
2014-01-23 17:04:13 +04:00
<input type="submit" value="" class="svg icon icon-confirm" />
2012-08-27 23:46:05 +04:00
</p>
</fieldset>
</form>