Welcome to mirror list, hosted at ThFree Co, Russian Federation.

authenticate.php « templates - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 023e62685c0c5ce4226097404756ba2734a496de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
	/** @var $_ array */
	/** @var $l \OCP\IL10N */
	style('spreed', 'authenticate');
	script('spreed', 'authenticate');
?>
<form method="post">
	<fieldset class="warning">
		<?php if (!$_['wrongpw']) { ?>
			<div class="warning-info"><?php p($l->t('This conversation is password-protected')); ?></div>
		<?php } else { ?>
			<div class="warning"><?php p($l->t('The password is wrong. Try again.')); ?></div>
		<?php } ?>
		<p>
			<label for="password" class="infield"><?php p($l->t('Password')); ?></label>
			<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>" />
			<input type="password" name="password" id="password"
				placeholder="<?php p($l->t('Password')); ?>" value=""
				autocomplete="off" autocapitalize="off" autocorrect="off"
				autofocus />
			<input type="submit" id="password-submit"
				class="svg icon-confirm input-button-inline" value="" disabled="disabled" />
		</p>
	</fieldset>
</form>