summaryrefslogtreecommitdiffstats
path: root/core/templates/login.php
blob: 153d1b50a3048f5b4a52342f964cdcfec360aa58 (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
26
27
28
29
30
31
32
<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}</style><![endif]-->
<form method="post">
	<fieldset>
		<?php if(!empty($_['redirect_url'])) { echo '<input type="hidden" name="redirect_url" value="'.$_['redirect_url'].'" />'; } ?>
		<ul>
		<?php if(isset($_['invalidcookie']) && ($_['invalidcookie'])): ?>
			<li class="errors">
				<?php echo $l->t('Automatic logon rejected!'); ?><br>
				<small><?php echo $l->t('If you did not change your password recently, your account may be compromised!'); ?></small><br>
				<small><?php echo $l->t('Please change your password to secure your account again.'); ?></small>
			</li>
		<?php endif; ?>
		<?php if(isset($_['invalidpassword']) && ($_['invalidpassword'])): ?>
			<a href="<?php echo OC_Helper::linkToRoute('core_lostpassword_index') ?>"><li class="errors">
				<?php echo $l->t('Lost your password?'); ?>
			</li></a>
		<?php endif; ?>
		</ul>
		<p class="infield grouptop">
			<input type="text" name="user" id="user" value="<?php echo $_['username']; ?>"<?php echo $_['user_autofocus']?' autofocus':''; ?> autocomplete="on" required />
			<label for="user" class="infield"><?php echo $l->t( 'Username' ); ?></label>
			<img class="svg" src="<?php echo image_path('', 'actions/user.svg'); ?>" alt="" />
		</p>
		<p class="infield groupbottom">
			<input type="password" name="password" id="password" value="" required<?php echo $_['user_autofocus']?'':' autofocus'; ?> />
			<label for="password" class="infield"><?php echo $l->t( 'Password' ); ?></label>
			<img class="svg" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt="" />
		</p>
		<input type="checkbox" name="remember_login" value="1" id="remember_login" /><label for="remember_login"><?php echo $l->t('remember'); ?></label>
		<input type="submit" id="submit" class="login primary" value="<?php echo $l->t( 'Log in' ); ?>" />
	</fieldset>
</form>