summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/templates/authenticate.php
blob: 9334861b1cedeffc93896d192742b86f39b80347 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<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>