diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-01-29 20:15:53 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-01-29 20:15:53 -0500 |
commit | dae0c7391ab8308506bddc5fff76414a3bb87ce4 (patch) | |
tree | 1b594635ceee536c986b8f4f24a7122858ab7fc3 /app/Template/auth | |
parent | 915bf5882293d7041e8e5d0f5c32b8acf0938148 (diff) |
Move Google authentication to an external plugin
Diffstat (limited to 'app/Template/auth')
-rw-r--r-- | app/Template/auth/index.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/app/Template/auth/index.php b/app/Template/auth/index.php index a1059d6f..99444d37 100644 --- a/app/Template/auth/index.php +++ b/app/Template/auth/index.php @@ -40,12 +40,8 @@ <?= $this->hook->render('template:auth:login-form:after') ?> - <?php if (GOOGLE_AUTH || GITHUB_AUTH || GITLAB_AUTH): ?> + <?php if (GITHUB_AUTH || GITLAB_AUTH): ?> <ul class="no-bullet"> - <?php if (GOOGLE_AUTH): ?> - <li><?= $this->url->link(t('Login with my Google Account'), 'oauth', 'google') ?></li> - <?php endif ?> - <?php if (GITHUB_AUTH): ?> <li><?= $this->url->link(t('Login with my Github Account'), 'oauth', 'github') ?></li> <?php endif ?> |