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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-21 09:58:35 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-29 12:05:16 +0300
commit64c4bb5bce52599d9df4007ba9d622840fee1213 (patch)
treee9830d53a3213fd7081df79764abc5bfe8e4c234 /core/templates
parentccd8da66f20394555b27eb65e5682ffc140454eb (diff)
Vueify the login page
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/login.php98
1 files changed, 1 insertions, 97 deletions
diff --git a/core/templates/login.php b/core/templates/login.php
index 02349fab5aa..548216d4620 100644
--- a/core/templates/login.php
+++ b/core/templates/login.php
@@ -1,105 +1,9 @@
<?php /** @var $l \OCP\IL10N */ ?>
<?php
script('core', 'dist/login');
-
-use OC\Core\Controller\LoginController;
?>
-<!--[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($_[LoginController::LOGIN_MSG_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="<?php p($_['login_form_autocomplete']); ?>" 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($_[LoginController::LOGIN_MSG_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="<?php p($_['login_form_autocomplete']); ?>" autocapitalize="none" autocorrect="off" 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($_[LoginController::LOGIN_MSG_INVALIDPASSWORD])) { ?>
- <p class="warning wrongPasswordMsg">
- <?php p($l->t('Wrong username or password.')); ?>
- </p>
- <?php } else if (!empty($_[LoginController::LOGIN_MSG_USERDISABLED])) { ?>
- <p class="warning userDisabledMsg">
- <?php p(\OC::$server->getL10N('lib')->t('User disabled')); ?>
- </p>
- <?php } ?>
-
- <?php if ($_['throttle_delay'] > 5000) { ?>
- <p class="warning throttledMsg">
- <?php p($l->t('We have detected multiple invalid login attempts from your IP. Therefore your next login is throttled up to 30 seconds.')); ?>
- </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 (!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 login')); ?>
- </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>
+<div id="login"></div>
<?php if (!empty($_['alt_login'])) { ?>
<form id="alternative-logins">
<fieldset>