nextcloud/apps/files_sharing/templates/authenticate.php
kondou 2c4a9e0776 Add a "Wrong password." message, if the password
for the public share was wrong.

Fix #2725
2013-07-02 03:16:42 +02:00

12 lines
468 B
PHP

<form action="<?php p($_['URL']); ?>" method="post">
<fieldset>
<?php if ($_['wrongpw']): ?>
<div class="warning"><?php p($l->t('Wrong password.')); ?></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="<?php p($l->t('Submit')); ?>" />
</p>
</fieldset>
</form>