114 lines
4.5 KiB
PHP
114 lines
4.5 KiB
PHP
<?php /** @var $l \OCP\IL10N */ ?>
|
|
<?php
|
|
vendor_script('jsTimezoneDetect/jstz');
|
|
script('core', 'merged-login');
|
|
?>
|
|
|
|
<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}</style><![endif]-->
|
|
<form method="post" name="login">
|
|
<fieldset>
|
|
<?php if (!empty($_['redirect_url'])) {
|
|
print_unescaped('<input type="hidden" name="redirect_url" value="' . \OCP\Util::sanitizeHTML($_['redirect_url']) . '">');
|
|
} ?>
|
|
<?php if (isset($_['apacheauthfailed']) && ($_['apacheauthfailed'])): ?>
|
|
<div class="warning">
|
|
<?php p($l->t('Server side authentication failed!')); ?><br>
|
|
<small><?php p($l->t('Please contact your administrator.')); ?></small>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php foreach($_['messages'] as $message): ?>
|
|
<div class="warning">
|
|
<?php p($message); ?><br>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
<?php if (isset($_['internalexception']) && ($_['internalexception'])): ?>
|
|
<div class="warning">
|
|
<?php p($l->t('An internal error occurred.')); ?><br>
|
|
<small><?php p($l->t('Please try again or contact your administrator.')); ?></small>
|
|
</div>
|
|
<?php endif; ?>
|
|
<div id="message" class="hidden">
|
|
<img class="float-spinner" alt=""
|
|
src="<?php p(image_path('core', 'loading-dark.gif'));?>">
|
|
<span id="messageText"></span>
|
|
<!-- the following div ensures that the spinner is always inside the #message div -->
|
|
<div style="clear: both;"></div>
|
|
</div>
|
|
<p class="grouptop<?php if (!empty($_['invalidpassword'])) { ?> shake<?php } ?>">
|
|
<input type="text" name="user" id="user"
|
|
placeholder="<?php p($l->t('Username or email')); ?>"
|
|
aria-label="<?php p($l->t('Username or email')); ?>"
|
|
value="<?php p($_['loginName']); ?>"
|
|
<?php p($_['user_autofocus'] ? 'autofocus' : ''); ?>
|
|
autocomplete="on" autocapitalize="none" autocorrect="off" required>
|
|
<label for="user" class="infield"><?php p($l->t('Username or email')); ?></label>
|
|
</p>
|
|
|
|
<p class="groupbottom<?php if (!empty($_['invalidpassword'])) { ?> shake<?php } ?>">
|
|
<input type="password" name="password" id="password" value=""
|
|
placeholder="<?php p($l->t('Password')); ?>"
|
|
aria-label="<?php p($l->t('Password')); ?>"
|
|
<?php p($_['user_autofocus'] ? '' : 'autofocus'); ?>
|
|
autocomplete="on" autocapitalize="off" autocorrect="none" required>
|
|
<label for="password" class="infield"><?php p($l->t('Password')); ?></label>
|
|
</p>
|
|
|
|
<div id="submit-wrapper">
|
|
<input type="submit" id="submit" class="login primary" title="" value="<?php p($l->t('Log in')); ?>" disabled="disabled" />
|
|
<div class="submit-icon icon-confirm-white"></div>
|
|
</div>
|
|
|
|
<?php if (!empty($_['invalidpassword'])) { ?>
|
|
<p class="warning wrongPasswordMsg">
|
|
<?php p($l->t('Wrong password.')); ?>
|
|
</p>
|
|
<?php } ?>
|
|
|
|
<?php if (!empty($_['canResetPassword'])) { ?>
|
|
<div id="reset-password-wrapper" style="display: none;">
|
|
<input type="submit" id="reset-password-submit" class="login primary" title="" value="<?php p($l->t('Reset password')); ?>" disabled="disabled" />
|
|
<div class="submit-icon icon-confirm-white"></div>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<div class="login-additional">
|
|
<?php if (!$_['hideRemeberLoginState']) { ?>
|
|
<div class="remember-login-container">
|
|
<?php if ($_['rememberLoginState'] === 0) { ?>
|
|
<input type="checkbox" name="remember_login" value="1" id="remember_login" class="checkbox checkbox--white">
|
|
<?php } else { ?>
|
|
<input type="checkbox" name="remember_login" value="1" id="remember_login" class="checkbox checkbox--white" checked="checked">
|
|
<?php } ?>
|
|
<label for="remember_login"><?php p($l->t('Stay logged in')); ?></label>
|
|
</div>
|
|
<?php } ?>
|
|
<?php if (!empty($_['canResetPassword'])) { ?>
|
|
<div class="lost-password-container">
|
|
<a id="lost-password" href="<?php p($_['resetPasswordLink']); ?>">
|
|
<?php p($l->t('Forgot password?')); ?>
|
|
</a>
|
|
<a id="lost-password-back" href="" style="display:none;">
|
|
<?php p($l->t('Back to log in')); ?>
|
|
</a>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
<input type="hidden" name="timezone_offset" id="timezone_offset"/>
|
|
<input type="hidden" name="timezone" id="timezone"/>
|
|
<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>">
|
|
</fieldset>
|
|
</form>
|
|
<?php if (!empty($_['alt_login'])) { ?>
|
|
<form id="alternative-logins">
|
|
<fieldset>
|
|
<legend><?php p($l->t('Alternative Logins')) ?></legend>
|
|
<ul>
|
|
<?php foreach($_['alt_login'] as $login): ?>
|
|
<li><a class="button" href="<?php print_unescaped($login['href']); ?>" ><?php p($login['name']); ?></a></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</fieldset>
|
|
</form>
|
|
<?php }
|